ホーム › Media.MediaPlayer › WMPBurnState
WMPBurnState
列挙型メンバー 10
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| wmpbsUnknown | 0 | 0x0 | 有効な状態ではありません。 |
| wmpbsBusy | 1 | 0x1 | Windows Media Player がビジー状態です。しばらくしてから再試行してください。 |
| wmpbsReady | 2 | 0x2 | CD の書き込みを開始する準備ができています。 |
| wmpbsWaitingForDisc | 3 | 0x3 | ディスクが利用可能になるのを待機しています。 |
| wmpbsRefreshStatusPending | 4 | 0x4 | 書き込みプレイリストが変更されました。IWMPCdromBurn::refreshStatus を呼び出してください。 |
| wmpbsPreparingToBurn | 5 | 0x5 | Windows Media Player は CD への書き込みを準備しています。 |
| wmpbsBurning | 6 | 0x6 | CD への書き込みが行われています。 |
| wmpbsStopped | 7 | 0x7 | 書き込み操作が停止されています。 |
| wmpbsErasing | 8 | 0x8 | Windows Media Player は CD を消去しています。 |
| wmpbsDownloading | 9 | 0x9 |
公式ドキュメント
[このページに関連する機能である Windows Media Player SDK はレガシー機能です。この機能は MediaPlayer に置き換えられました。MediaPlayer は Windows 10 および Windows 11 向けに最適化されています。Microsoft は、可能な限り、新しいコードでは Windows Media Player SDK ではなく MediaPlayer を使用することを強く推奨します。また、レガシー API を使用している既存のコードについても、可能であれば新しい API を使用するように書き換えることを推奨します。]
WMPBurnState 列挙型は、Windows Media Player が CD を書き込む際に取り得る動作状態を定義します。
解説(Remarks)
Windows Media Player 10 Mobile: この列挙型はサポートされていません。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum WMPBurnState : int {
wmpbsUnknown = 0,
wmpbsBusy = 1,
wmpbsReady = 2,
wmpbsWaitingForDisc = 3,
wmpbsRefreshStatusPending = 4,
wmpbsPreparingToBurn = 5,
wmpbsBurning = 6,
wmpbsStopped = 7,
wmpbsErasing = 8,
wmpbsDownloading = 9
} WMPBurnState;public enum WMPBurnState : int
{
wmpbsUnknown = 0,
wmpbsBusy = 1,
wmpbsReady = 2,
wmpbsWaitingForDisc = 3,
wmpbsRefreshStatusPending = 4,
wmpbsPreparingToBurn = 5,
wmpbsBurning = 6,
wmpbsStopped = 7,
wmpbsErasing = 8,
wmpbsDownloading = 9,
}Public Enum WMPBurnState As Integer
wmpbsUnknown = 0
wmpbsBusy = 1
wmpbsReady = 2
wmpbsWaitingForDisc = 3
wmpbsRefreshStatusPending = 4
wmpbsPreparingToBurn = 5
wmpbsBurning = 6
wmpbsStopped = 7
wmpbsErasing = 8
wmpbsDownloading = 9
End Enumimport enum
class WMPBurnState(enum.IntEnum):
wmpbsUnknown = 0
wmpbsBusy = 1
wmpbsReady = 2
wmpbsWaitingForDisc = 3
wmpbsRefreshStatusPending = 4
wmpbsPreparingToBurn = 5
wmpbsBurning = 6
wmpbsStopped = 7
wmpbsErasing = 8
wmpbsDownloading = 9// WMPBurnState
pub const wmpbsUnknown: i32 = 0;
pub const wmpbsBusy: i32 = 1;
pub const wmpbsReady: i32 = 2;
pub const wmpbsWaitingForDisc: i32 = 3;
pub const wmpbsRefreshStatusPending: i32 = 4;
pub const wmpbsPreparingToBurn: i32 = 5;
pub const wmpbsBurning: i32 = 6;
pub const wmpbsStopped: i32 = 7;
pub const wmpbsErasing: i32 = 8;
pub const wmpbsDownloading: i32 = 9;// WMPBurnState
const (
wmpbsUnknown int32 = 0
wmpbsBusy int32 = 1
wmpbsReady int32 = 2
wmpbsWaitingForDisc int32 = 3
wmpbsRefreshStatusPending int32 = 4
wmpbsPreparingToBurn int32 = 5
wmpbsBurning int32 = 6
wmpbsStopped int32 = 7
wmpbsErasing int32 = 8
wmpbsDownloading int32 = 9
)const
wmpbsUnknown = 0;
wmpbsBusy = 1;
wmpbsReady = 2;
wmpbsWaitingForDisc = 3;
wmpbsRefreshStatusPending = 4;
wmpbsPreparingToBurn = 5;
wmpbsBurning = 6;
wmpbsStopped = 7;
wmpbsErasing = 8;
wmpbsDownloading = 9;// WMPBurnState
pub const wmpbsUnknown: i32 = 0;
pub const wmpbsBusy: i32 = 1;
pub const wmpbsReady: i32 = 2;
pub const wmpbsWaitingForDisc: i32 = 3;
pub const wmpbsRefreshStatusPending: i32 = 4;
pub const wmpbsPreparingToBurn: i32 = 5;
pub const wmpbsBurning: i32 = 6;
pub const wmpbsStopped: i32 = 7;
pub const wmpbsErasing: i32 = 8;
pub const wmpbsDownloading: i32 = 9;const
wmpbsUnknown* = 0
wmpbsBusy* = 1
wmpbsReady* = 2
wmpbsWaitingForDisc* = 3
wmpbsRefreshStatusPending* = 4
wmpbsPreparingToBurn* = 5
wmpbsBurning* = 6
wmpbsStopped* = 7
wmpbsErasing* = 8
wmpbsDownloading* = 9enum WMPBurnState : int {
wmpbsUnknown = 0,
wmpbsBusy = 1,
wmpbsReady = 2,
wmpbsWaitingForDisc = 3,
wmpbsRefreshStatusPending = 4,
wmpbsPreparingToBurn = 5,
wmpbsBurning = 6,
wmpbsStopped = 7,
wmpbsErasing = 8,
wmpbsDownloading = 9,
}#define global wmpbsUnknown 0x0
#define global wmpbsBusy 0x1
#define global wmpbsReady 0x2
#define global wmpbsWaitingForDisc 0x3
#define global wmpbsRefreshStatusPending 0x4
#define global wmpbsPreparingToBurn 0x5
#define global wmpbsBurning 0x6
#define global wmpbsStopped 0x7
#define global wmpbsErasing 0x8
#define global wmpbsDownloading 0x9