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

WAIT_OPTION

列挙型
基底型i4

メンバー 3

名前10進16進
WAIT_MSGPUMP10x1
WAIT_ALERTABLE20x2
WAIT_NOTINDEADLOCK40x4

各言語での定義

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

typedef enum WAIT_OPTION : int {
    WAIT_MSGPUMP = 1,
    WAIT_ALERTABLE = 2,
    WAIT_NOTINDEADLOCK = 4
} WAIT_OPTION;
public enum WAIT_OPTION : int
{
    WAIT_MSGPUMP = 1,
    WAIT_ALERTABLE = 2,
    WAIT_NOTINDEADLOCK = 4,
}
Public Enum WAIT_OPTION As Integer
    WAIT_MSGPUMP = 1
    WAIT_ALERTABLE = 2
    WAIT_NOTINDEADLOCK = 4
End Enum
import enum

class WAIT_OPTION(enum.IntEnum):
    WAIT_MSGPUMP = 1
    WAIT_ALERTABLE = 2
    WAIT_NOTINDEADLOCK = 4
// WAIT_OPTION
pub const WAIT_MSGPUMP: i32 = 1;
pub const WAIT_ALERTABLE: i32 = 2;
pub const WAIT_NOTINDEADLOCK: i32 = 4;
// WAIT_OPTION
const (
	WAIT_MSGPUMP int32 = 1
	WAIT_ALERTABLE int32 = 2
	WAIT_NOTINDEADLOCK int32 = 4
)
const
  WAIT_MSGPUMP = 1;
  WAIT_ALERTABLE = 2;
  WAIT_NOTINDEADLOCK = 4;
// WAIT_OPTION
pub const WAIT_MSGPUMP: i32 = 1;
pub const WAIT_ALERTABLE: i32 = 2;
pub const WAIT_NOTINDEADLOCK: i32 = 4;
const
  WAIT_MSGPUMP* = 1
  WAIT_ALERTABLE* = 2
  WAIT_NOTINDEADLOCK* = 4
enum WAIT_OPTION : int {
    WAIT_MSGPUMP = 1,
    WAIT_ALERTABLE = 2,
    WAIT_NOTINDEADLOCK = 4,
}
#define global WAIT_MSGPUMP       0x1
#define global WAIT_ALERTABLE     0x2
#define global WAIT_NOTINDEADLOCK 0x4