Win32 API 日本語リファレンス
ホームMedia.MediaPlayer › WMPTaskType

WMPTaskType

列挙型
基底型i4

メンバー 4

名前10進16進説明
wmpttBrowse10x1Browse タスク ペインです。
wmpttSync20x2Sync タスク ペインです。
wmpttBurn30x3Burn タスク ペインです。
wmpttCurrent40x4その他のタスク ペインです。

公式ドキュメント

[このページに関連付けられている機能である Windows Media Player SDK は、レガシ機能です。この機能は MediaPlayer に置き換えられました。MediaPlayer は Windows 10 および Windows 11 向けに最適化されています。Microsoft は、可能な場合は新しいコードで Windows Media Player SDK ではなく MediaPlayer を使用することを強く推奨します。また、レガシ API を使用している既存のコードについても、可能であれば新しい API を使用するように書き換えることをお勧めします。]

メモ このセクションでは、オンライン ストアでの使用を目的とした機能について説明します。オンライン ストア以外のコンテキストでこの機能を使用することはサポートされていません。
WMPTaskType 列挙型は、Windows Media Player のタスク ペインを表します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum WMPTaskType : int {
    wmpttBrowse = 1,
    wmpttSync = 2,
    wmpttBurn = 3,
    wmpttCurrent = 4
} WMPTaskType;
public enum WMPTaskType : int
{
    wmpttBrowse = 1,
    wmpttSync = 2,
    wmpttBurn = 3,
    wmpttCurrent = 4,
}
Public Enum WMPTaskType As Integer
    wmpttBrowse = 1
    wmpttSync = 2
    wmpttBurn = 3
    wmpttCurrent = 4
End Enum
import enum

class WMPTaskType(enum.IntEnum):
    wmpttBrowse = 1
    wmpttSync = 2
    wmpttBurn = 3
    wmpttCurrent = 4
// WMPTaskType
pub const wmpttBrowse: i32 = 1;
pub const wmpttSync: i32 = 2;
pub const wmpttBurn: i32 = 3;
pub const wmpttCurrent: i32 = 4;
// WMPTaskType
const (
	wmpttBrowse int32 = 1
	wmpttSync int32 = 2
	wmpttBurn int32 = 3
	wmpttCurrent int32 = 4
)
const
  wmpttBrowse = 1;
  wmpttSync = 2;
  wmpttBurn = 3;
  wmpttCurrent = 4;
// WMPTaskType
pub const wmpttBrowse: i32 = 1;
pub const wmpttSync: i32 = 2;
pub const wmpttBurn: i32 = 3;
pub const wmpttCurrent: i32 = 4;
const
  wmpttBrowse* = 1
  wmpttSync* = 2
  wmpttBurn* = 3
  wmpttCurrent* = 4
enum WMPTaskType : int {
    wmpttBrowse = 1,
    wmpttSync = 2,
    wmpttBurn = 3,
    wmpttCurrent = 4,
}
#define global wmpttBrowse  0x1
#define global wmpttSync    0x2
#define global wmpttBurn    0x3
#define global wmpttCurrent 0x4