ShellWindowTypeConstants
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| SWC_EXPLORER | 0 | 0x0 |
| SWC_BROWSER | 1 | 0x1 |
| SWC_3RDPARTY | 2 | 0x2 |
| SWC_CALLBACK | 4 | 0x4 |
| SWC_DESKTOP | 8 | 0x8 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum ShellWindowTypeConstants : int {
SWC_EXPLORER = 0,
SWC_BROWSER = 1,
SWC_3RDPARTY = 2,
SWC_CALLBACK = 4,
SWC_DESKTOP = 8
} ShellWindowTypeConstants;public enum ShellWindowTypeConstants : int
{
SWC_EXPLORER = 0,
SWC_BROWSER = 1,
SWC_3RDPARTY = 2,
SWC_CALLBACK = 4,
SWC_DESKTOP = 8,
}Public Enum ShellWindowTypeConstants As Integer
SWC_EXPLORER = 0
SWC_BROWSER = 1
SWC_3RDPARTY = 2
SWC_CALLBACK = 4
SWC_DESKTOP = 8
End Enumimport enum
class ShellWindowTypeConstants(enum.IntEnum):
SWC_EXPLORER = 0
SWC_BROWSER = 1
SWC_3RDPARTY = 2
SWC_CALLBACK = 4
SWC_DESKTOP = 8// ShellWindowTypeConstants
pub const SWC_EXPLORER: i32 = 0;
pub const SWC_BROWSER: i32 = 1;
pub const SWC_3RDPARTY: i32 = 2;
pub const SWC_CALLBACK: i32 = 4;
pub const SWC_DESKTOP: i32 = 8;// ShellWindowTypeConstants
const (
SWC_EXPLORER int32 = 0
SWC_BROWSER int32 = 1
SWC_3RDPARTY int32 = 2
SWC_CALLBACK int32 = 4
SWC_DESKTOP int32 = 8
)const
SWC_EXPLORER = 0;
SWC_BROWSER = 1;
SWC_3RDPARTY = 2;
SWC_CALLBACK = 4;
SWC_DESKTOP = 8;// ShellWindowTypeConstants
pub const SWC_EXPLORER: i32 = 0;
pub const SWC_BROWSER: i32 = 1;
pub const SWC_3RDPARTY: i32 = 2;
pub const SWC_CALLBACK: i32 = 4;
pub const SWC_DESKTOP: i32 = 8;const
SWC_EXPLORER* = 0
SWC_BROWSER* = 1
SWC_3RDPARTY* = 2
SWC_CALLBACK* = 4
SWC_DESKTOP* = 8enum ShellWindowTypeConstants : int {
SWC_EXPLORER = 0,
SWC_BROWSER = 1,
SWC_3RDPARTY = 2,
SWC_CALLBACK = 4,
SWC_DESKTOP = 8,
}#define global SWC_EXPLORER 0x0
#define global SWC_BROWSER 0x1
#define global SWC_3RDPARTY 0x2
#define global SWC_CALLBACK 0x4
#define global SWC_DESKTOP 0x8