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