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

WMPTemplateSize

列挙型
基底型i4

メンバー 3

名前10進16進
wmptsSmall00x0
wmptsMedium10x1
wmptsLarge20x2

各言語での定義

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

typedef enum WMPTemplateSize : int {
    wmptsSmall = 0,
    wmptsMedium = 1,
    wmptsLarge = 2
} WMPTemplateSize;
public enum WMPTemplateSize : int
{
    wmptsSmall = 0,
    wmptsMedium = 1,
    wmptsLarge = 2,
}
Public Enum WMPTemplateSize As Integer
    wmptsSmall = 0
    wmptsMedium = 1
    wmptsLarge = 2
End Enum
import enum

class WMPTemplateSize(enum.IntEnum):
    wmptsSmall = 0
    wmptsMedium = 1
    wmptsLarge = 2
// WMPTemplateSize
pub const wmptsSmall: i32 = 0;
pub const wmptsMedium: i32 = 1;
pub const wmptsLarge: i32 = 2;
// WMPTemplateSize
const (
	wmptsSmall int32 = 0
	wmptsMedium int32 = 1
	wmptsLarge int32 = 2
)
const
  wmptsSmall = 0;
  wmptsMedium = 1;
  wmptsLarge = 2;
// WMPTemplateSize
pub const wmptsSmall: i32 = 0;
pub const wmptsMedium: i32 = 1;
pub const wmptsLarge: i32 = 2;
const
  wmptsSmall* = 0
  wmptsMedium* = 1
  wmptsLarge* = 2
enum WMPTemplateSize : int {
    wmptsSmall = 0,
    wmptsMedium = 1,
    wmptsLarge = 2,
}
#define global wmptsSmall  0x0
#define global wmptsMedium 0x1
#define global wmptsLarge  0x2