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

HCS_NOTIFICATION_FLAGS

列挙型
基底型i4

メンバー 2

名前10進16進
HcsNotificationFlagSuccess00x0
HcsNotificationFlagFailure-21474836480x80000000

各言語での定義

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

typedef enum HCS_NOTIFICATION_FLAGS : int {
    HcsNotificationFlagSuccess = 0,
    HcsNotificationFlagFailure = -2147483648
} HCS_NOTIFICATION_FLAGS;
public enum HCS_NOTIFICATION_FLAGS : int
{
    HcsNotificationFlagSuccess = 0,
    HcsNotificationFlagFailure = -2147483648,
}
Public Enum HCS_NOTIFICATION_FLAGS As Integer
    HcsNotificationFlagSuccess = 0
    HcsNotificationFlagFailure = -2147483648
End Enum
import enum

class HCS_NOTIFICATION_FLAGS(enum.IntEnum):
    HcsNotificationFlagSuccess = 0
    HcsNotificationFlagFailure = -2147483648
// HCS_NOTIFICATION_FLAGS
pub const HcsNotificationFlagSuccess: i32 = 0;
pub const HcsNotificationFlagFailure: i32 = -2147483648;
// HCS_NOTIFICATION_FLAGS
const (
	HcsNotificationFlagSuccess int32 = 0
	HcsNotificationFlagFailure int32 = -2147483648
)
const
  HcsNotificationFlagSuccess = 0;
  HcsNotificationFlagFailure = -2147483648;
// HCS_NOTIFICATION_FLAGS
pub const HcsNotificationFlagSuccess: i32 = 0;
pub const HcsNotificationFlagFailure: i32 = -2147483648;
const
  HcsNotificationFlagSuccess* = 0
  HcsNotificationFlagFailure* = -2147483648
enum HCS_NOTIFICATION_FLAGS : int {
    HcsNotificationFlagSuccess = 0,
    HcsNotificationFlagFailure = -2147483648,
}
#define global HcsNotificationFlagSuccess 0x0
#define global HcsNotificationFlagFailure 0x80000000