Win32 API 日本語リファレンス
ホームUI.Shell › ShellWindowTypeConstants

ShellWindowTypeConstants

列挙型
基底型i4

メンバー 5

名前10進16進
SWC_EXPLORER00x0
SWC_BROWSER10x1
SWC_3RDPARTY20x2
SWC_CALLBACK40x4
SWC_DESKTOP80x8

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 8
enum 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