Win32 API 日本語リファレンス
ホームSystem.Mmc › IconIdentifier

IconIdentifier

列挙型
基底型i4

メンバー 7

名前10進16進
Icon_None00x0
Icon_Error325130x7F01
Icon_Question325140x7F02
Icon_Warning325150x7F03
Icon_Information325160x7F04
Icon_First325130x7F01
Icon_Last325160x7F04

各言語での定義

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

typedef enum IconIdentifier : int {
    Icon_None = 0,
    Icon_Error = 32513,
    Icon_Question = 32514,
    Icon_Warning = 32515,
    Icon_Information = 32516,
    Icon_First = 32513,
    Icon_Last = 32516
} IconIdentifier;
public enum IconIdentifier : int
{
    Icon_None = 0,
    Icon_Error = 32513,
    Icon_Question = 32514,
    Icon_Warning = 32515,
    Icon_Information = 32516,
    Icon_First = 32513,
    Icon_Last = 32516,
}
Public Enum IconIdentifier As Integer
    Icon_None = 0
    Icon_Error = 32513
    Icon_Question = 32514
    Icon_Warning = 32515
    Icon_Information = 32516
    Icon_First = 32513
    Icon_Last = 32516
End Enum
import enum

class IconIdentifier(enum.IntEnum):
    Icon_None = 0
    Icon_Error = 32513
    Icon_Question = 32514
    Icon_Warning = 32515
    Icon_Information = 32516
    Icon_First = 32513
    Icon_Last = 32516
// IconIdentifier
pub const Icon_None: i32 = 0;
pub const Icon_Error: i32 = 32513;
pub const Icon_Question: i32 = 32514;
pub const Icon_Warning: i32 = 32515;
pub const Icon_Information: i32 = 32516;
pub const Icon_First: i32 = 32513;
pub const Icon_Last: i32 = 32516;
// IconIdentifier
const (
	Icon_None int32 = 0
	Icon_Error int32 = 32513
	Icon_Question int32 = 32514
	Icon_Warning int32 = 32515
	Icon_Information int32 = 32516
	Icon_First int32 = 32513
	Icon_Last int32 = 32516
)
const
  Icon_None = 0;
  Icon_Error = 32513;
  Icon_Question = 32514;
  Icon_Warning = 32515;
  Icon_Information = 32516;
  Icon_First = 32513;
  Icon_Last = 32516;
// IconIdentifier
pub const Icon_None: i32 = 0;
pub const Icon_Error: i32 = 32513;
pub const Icon_Question: i32 = 32514;
pub const Icon_Warning: i32 = 32515;
pub const Icon_Information: i32 = 32516;
pub const Icon_First: i32 = 32513;
pub const Icon_Last: i32 = 32516;
const
  Icon_None* = 0
  Icon_Error* = 32513
  Icon_Question* = 32514
  Icon_Warning* = 32515
  Icon_Information* = 32516
  Icon_First* = 32513
  Icon_Last* = 32516
enum IconIdentifier : int {
    Icon_None = 0,
    Icon_Error = 32513,
    Icon_Question = 32514,
    Icon_Warning = 32515,
    Icon_Information = 32516,
    Icon_First = 32513,
    Icon_Last = 32516,
}
#define global Icon_None        0x0
#define global Icon_Error       0x7F01
#define global Icon_Question    0x7F02
#define global Icon_Warning     0x7F03
#define global Icon_Information 0x7F04
#define global Icon_First       0x7F01
#define global Icon_Last        0x7F04