Win32 API 日本語リファレンス
ホームUI.Shell › FDE_SHAREVIOLATION_RESPONSE

FDE_SHAREVIOLATION_RESPONSE

列挙型
基底型i4

メンバー 3

名前10進16進
FDESVR_DEFAULT00x0
FDESVR_ACCEPT10x1
FDESVR_REFUSE20x2

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2
enum 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