Win32 API 日本語リファレンス
ホームNetworking.WindowsWebServices › WS_CALLBACK_MODEL

WS_CALLBACK_MODEL

列挙型
基底型i4

メンバー 2

名前10進16進
WS_SHORT_CALLBACK00x0
WS_LONG_CALLBACK10x1

各言語での定義

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

typedef enum WS_CALLBACK_MODEL : int {
    WS_SHORT_CALLBACK = 0,
    WS_LONG_CALLBACK = 1
} WS_CALLBACK_MODEL;
public enum WS_CALLBACK_MODEL : int
{
    WS_SHORT_CALLBACK = 0,
    WS_LONG_CALLBACK = 1,
}
Public Enum WS_CALLBACK_MODEL As Integer
    WS_SHORT_CALLBACK = 0
    WS_LONG_CALLBACK = 1
End Enum
import enum

class WS_CALLBACK_MODEL(enum.IntEnum):
    WS_SHORT_CALLBACK = 0
    WS_LONG_CALLBACK = 1
// WS_CALLBACK_MODEL
pub const WS_SHORT_CALLBACK: i32 = 0;
pub const WS_LONG_CALLBACK: i32 = 1;
// WS_CALLBACK_MODEL
const (
	WS_SHORT_CALLBACK int32 = 0
	WS_LONG_CALLBACK int32 = 1
)
const
  WS_SHORT_CALLBACK = 0;
  WS_LONG_CALLBACK = 1;
// WS_CALLBACK_MODEL
pub const WS_SHORT_CALLBACK: i32 = 0;
pub const WS_LONG_CALLBACK: i32 = 1;
const
  WS_SHORT_CALLBACK* = 0
  WS_LONG_CALLBACK* = 1
enum WS_CALLBACK_MODEL : int {
    WS_SHORT_CALLBACK = 0,
    WS_LONG_CALLBACK = 1,
}
#define global WS_SHORT_CALLBACK 0x0
#define global WS_LONG_CALLBACK  0x1