ホーム › System.HostComputeSystem › HCS_NOTIFICATION_FLAGS
HCS_NOTIFICATION_FLAGS
列挙型メンバー 2
| 名前 | 10進 | 16進 |
|---|---|---|
| HcsNotificationFlagSuccess | 0 | 0x0 |
| HcsNotificationFlagFailure | -2147483648 | 0x80000000 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = -2147483648enum HCS_NOTIFICATION_FLAGS : int {
HcsNotificationFlagSuccess = 0,
HcsNotificationFlagFailure = -2147483648,
}#define global HcsNotificationFlagSuccess 0x0
#define global HcsNotificationFlagFailure 0x80000000