FDE_OVERWRITE_RESPONSE
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| FDEOR_DEFAULT | 0 | 0x0 |
| FDEOR_ACCEPT | 1 | 0x1 |
| FDEOR_REFUSE | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FDE_OVERWRITE_RESPONSE : int {
FDEOR_DEFAULT = 0,
FDEOR_ACCEPT = 1,
FDEOR_REFUSE = 2
} FDE_OVERWRITE_RESPONSE;public enum FDE_OVERWRITE_RESPONSE : int
{
FDEOR_DEFAULT = 0,
FDEOR_ACCEPT = 1,
FDEOR_REFUSE = 2,
}Public Enum FDE_OVERWRITE_RESPONSE As Integer
FDEOR_DEFAULT = 0
FDEOR_ACCEPT = 1
FDEOR_REFUSE = 2
End Enumimport enum
class FDE_OVERWRITE_RESPONSE(enum.IntEnum):
FDEOR_DEFAULT = 0
FDEOR_ACCEPT = 1
FDEOR_REFUSE = 2// FDE_OVERWRITE_RESPONSE
pub const FDEOR_DEFAULT: i32 = 0;
pub const FDEOR_ACCEPT: i32 = 1;
pub const FDEOR_REFUSE: i32 = 2;// FDE_OVERWRITE_RESPONSE
const (
FDEOR_DEFAULT int32 = 0
FDEOR_ACCEPT int32 = 1
FDEOR_REFUSE int32 = 2
)const
FDEOR_DEFAULT = 0;
FDEOR_ACCEPT = 1;
FDEOR_REFUSE = 2;// FDE_OVERWRITE_RESPONSE
pub const FDEOR_DEFAULT: i32 = 0;
pub const FDEOR_ACCEPT: i32 = 1;
pub const FDEOR_REFUSE: i32 = 2;const
FDEOR_DEFAULT* = 0
FDEOR_ACCEPT* = 1
FDEOR_REFUSE* = 2enum FDE_OVERWRITE_RESPONSE : int {
FDEOR_DEFAULT = 0,
FDEOR_ACCEPT = 1,
FDEOR_REFUSE = 2,
}#define global FDEOR_DEFAULT 0x0
#define global FDEOR_ACCEPT 0x1
#define global FDEOR_REFUSE 0x2