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

WMPTaskType

列挙型
基底型i4

メンバー 4

名前10進16進
wmpttBrowse10x1
wmpttSync20x2
wmpttBurn30x3
wmpttCurrent40x4

各言語での定義

列挙メンバーの定義。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