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

ShellWindowTypeConstants

列挙型
基底型i4

メンバー 5

名前10進16進説明
SWC_EXPLORER00x0Windows エクスプローラー (Explorer.exe) のウィンドウです。
SWC_BROWSER10x1Internet Explorer (Iexplore.exe) のブラウザーウィンドウです。
SWC_3RDPARTY20x2Microsoft 製以外のブラウザーウィンドウです。
SWC_CALLBACK40x4作成コールバックウィンドウです。
SWC_DESKTOP80x8Windows Vista 以降。Windows デスクトップです。

公式ドキュメント

シェルウィンドウの種類を指定します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

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