Win32 API 日本語リファレンス
ホームDevices.BiometricFramework › WINBIO_ESS_STATE_FLAGS

WINBIO_ESS_STATE_FLAGS

列挙型
基底型i4

メンバー 16

名前10進16進
WINBIO_ESS_REQUIRES_TPM210x1
WINBIO_ESS_REQUIRES_VBS_CAPABLE20x2
WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE40x4
WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO80x8
WINBIO_ESS_REQUIRES_VBS_RUNNING160x10
WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY320x20
WINBIO_ESS_REQUIRES_ENABLEMENT640x40
WINBIO_ESS_MANAGED_BY_POLICY1280x80
WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE2560x100
WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT5120x200
WINBIO_ESS_REQUIRES_FACE_SENSOR10240x400
WINBIO_ESS_REQUIRES_FPR_SENSOR20480x800
WINBIO_ESS_REQUIRES_ISOLATED_PROCESS40960x1000
WINBIO_ESS_BLOCKED_NON_ESS_FPR81920x2000
WINBIO_ESS_BLOCKED_NON_ESS_CAMERA163840x4000
WINBIO_ESS_SOURCE_DEFAULT327680x8000

各言語での定義

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

typedef enum WINBIO_ESS_STATE_FLAGS : int {
    WINBIO_ESS_REQUIRES_TPM2 = 1,
    WINBIO_ESS_REQUIRES_VBS_CAPABLE = 2,
    WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE = 4,
    WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO = 8,
    WINBIO_ESS_REQUIRES_VBS_RUNNING = 16,
    WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY = 32,
    WINBIO_ESS_REQUIRES_ENABLEMENT = 64,
    WINBIO_ESS_MANAGED_BY_POLICY = 128,
    WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE = 256,
    WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT = 512,
    WINBIO_ESS_REQUIRES_FACE_SENSOR = 1024,
    WINBIO_ESS_REQUIRES_FPR_SENSOR = 2048,
    WINBIO_ESS_REQUIRES_ISOLATED_PROCESS = 4096,
    WINBIO_ESS_BLOCKED_NON_ESS_FPR = 8192,
    WINBIO_ESS_BLOCKED_NON_ESS_CAMERA = 16384,
    WINBIO_ESS_SOURCE_DEFAULT = 32768
} WINBIO_ESS_STATE_FLAGS;
public enum WINBIO_ESS_STATE_FLAGS : int
{
    WINBIO_ESS_REQUIRES_TPM2 = 1,
    WINBIO_ESS_REQUIRES_VBS_CAPABLE = 2,
    WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE = 4,
    WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO = 8,
    WINBIO_ESS_REQUIRES_VBS_RUNNING = 16,
    WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY = 32,
    WINBIO_ESS_REQUIRES_ENABLEMENT = 64,
    WINBIO_ESS_MANAGED_BY_POLICY = 128,
    WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE = 256,
    WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT = 512,
    WINBIO_ESS_REQUIRES_FACE_SENSOR = 1024,
    WINBIO_ESS_REQUIRES_FPR_SENSOR = 2048,
    WINBIO_ESS_REQUIRES_ISOLATED_PROCESS = 4096,
    WINBIO_ESS_BLOCKED_NON_ESS_FPR = 8192,
    WINBIO_ESS_BLOCKED_NON_ESS_CAMERA = 16384,
    WINBIO_ESS_SOURCE_DEFAULT = 32768,
}
Public Enum WINBIO_ESS_STATE_FLAGS As Integer
    WINBIO_ESS_REQUIRES_TPM2 = 1
    WINBIO_ESS_REQUIRES_VBS_CAPABLE = 2
    WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE = 4
    WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO = 8
    WINBIO_ESS_REQUIRES_VBS_RUNNING = 16
    WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY = 32
    WINBIO_ESS_REQUIRES_ENABLEMENT = 64
    WINBIO_ESS_MANAGED_BY_POLICY = 128
    WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE = 256
    WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT = 512
    WINBIO_ESS_REQUIRES_FACE_SENSOR = 1024
    WINBIO_ESS_REQUIRES_FPR_SENSOR = 2048
    WINBIO_ESS_REQUIRES_ISOLATED_PROCESS = 4096
    WINBIO_ESS_BLOCKED_NON_ESS_FPR = 8192
    WINBIO_ESS_BLOCKED_NON_ESS_CAMERA = 16384
    WINBIO_ESS_SOURCE_DEFAULT = 32768
End Enum
import enum

class WINBIO_ESS_STATE_FLAGS(enum.IntEnum):
    WINBIO_ESS_REQUIRES_TPM2 = 1
    WINBIO_ESS_REQUIRES_VBS_CAPABLE = 2
    WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE = 4
    WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO = 8
    WINBIO_ESS_REQUIRES_VBS_RUNNING = 16
    WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY = 32
    WINBIO_ESS_REQUIRES_ENABLEMENT = 64
    WINBIO_ESS_MANAGED_BY_POLICY = 128
    WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE = 256
    WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT = 512
    WINBIO_ESS_REQUIRES_FACE_SENSOR = 1024
    WINBIO_ESS_REQUIRES_FPR_SENSOR = 2048
    WINBIO_ESS_REQUIRES_ISOLATED_PROCESS = 4096
    WINBIO_ESS_BLOCKED_NON_ESS_FPR = 8192
    WINBIO_ESS_BLOCKED_NON_ESS_CAMERA = 16384
    WINBIO_ESS_SOURCE_DEFAULT = 32768
// WINBIO_ESS_STATE_FLAGS
pub const WINBIO_ESS_REQUIRES_TPM2: i32 = 1;
pub const WINBIO_ESS_REQUIRES_VBS_CAPABLE: i32 = 2;
pub const WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE: i32 = 4;
pub const WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO: i32 = 8;
pub const WINBIO_ESS_REQUIRES_VBS_RUNNING: i32 = 16;
pub const WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY: i32 = 32;
pub const WINBIO_ESS_REQUIRES_ENABLEMENT: i32 = 64;
pub const WINBIO_ESS_MANAGED_BY_POLICY: i32 = 128;
pub const WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE: i32 = 256;
pub const WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT: i32 = 512;
pub const WINBIO_ESS_REQUIRES_FACE_SENSOR: i32 = 1024;
pub const WINBIO_ESS_REQUIRES_FPR_SENSOR: i32 = 2048;
pub const WINBIO_ESS_REQUIRES_ISOLATED_PROCESS: i32 = 4096;
pub const WINBIO_ESS_BLOCKED_NON_ESS_FPR: i32 = 8192;
pub const WINBIO_ESS_BLOCKED_NON_ESS_CAMERA: i32 = 16384;
pub const WINBIO_ESS_SOURCE_DEFAULT: i32 = 32768;
// WINBIO_ESS_STATE_FLAGS
const (
	WINBIO_ESS_REQUIRES_TPM2 int32 = 1
	WINBIO_ESS_REQUIRES_VBS_CAPABLE int32 = 2
	WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE int32 = 4
	WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO int32 = 8
	WINBIO_ESS_REQUIRES_VBS_RUNNING int32 = 16
	WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY int32 = 32
	WINBIO_ESS_REQUIRES_ENABLEMENT int32 = 64
	WINBIO_ESS_MANAGED_BY_POLICY int32 = 128
	WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE int32 = 256
	WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT int32 = 512
	WINBIO_ESS_REQUIRES_FACE_SENSOR int32 = 1024
	WINBIO_ESS_REQUIRES_FPR_SENSOR int32 = 2048
	WINBIO_ESS_REQUIRES_ISOLATED_PROCESS int32 = 4096
	WINBIO_ESS_BLOCKED_NON_ESS_FPR int32 = 8192
	WINBIO_ESS_BLOCKED_NON_ESS_CAMERA int32 = 16384
	WINBIO_ESS_SOURCE_DEFAULT int32 = 32768
)
const
  WINBIO_ESS_REQUIRES_TPM2 = 1;
  WINBIO_ESS_REQUIRES_VBS_CAPABLE = 2;
  WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE = 4;
  WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO = 8;
  WINBIO_ESS_REQUIRES_VBS_RUNNING = 16;
  WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY = 32;
  WINBIO_ESS_REQUIRES_ENABLEMENT = 64;
  WINBIO_ESS_MANAGED_BY_POLICY = 128;
  WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE = 256;
  WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT = 512;
  WINBIO_ESS_REQUIRES_FACE_SENSOR = 1024;
  WINBIO_ESS_REQUIRES_FPR_SENSOR = 2048;
  WINBIO_ESS_REQUIRES_ISOLATED_PROCESS = 4096;
  WINBIO_ESS_BLOCKED_NON_ESS_FPR = 8192;
  WINBIO_ESS_BLOCKED_NON_ESS_CAMERA = 16384;
  WINBIO_ESS_SOURCE_DEFAULT = 32768;
// WINBIO_ESS_STATE_FLAGS
pub const WINBIO_ESS_REQUIRES_TPM2: i32 = 1;
pub const WINBIO_ESS_REQUIRES_VBS_CAPABLE: i32 = 2;
pub const WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE: i32 = 4;
pub const WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO: i32 = 8;
pub const WINBIO_ESS_REQUIRES_VBS_RUNNING: i32 = 16;
pub const WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY: i32 = 32;
pub const WINBIO_ESS_REQUIRES_ENABLEMENT: i32 = 64;
pub const WINBIO_ESS_MANAGED_BY_POLICY: i32 = 128;
pub const WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE: i32 = 256;
pub const WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT: i32 = 512;
pub const WINBIO_ESS_REQUIRES_FACE_SENSOR: i32 = 1024;
pub const WINBIO_ESS_REQUIRES_FPR_SENSOR: i32 = 2048;
pub const WINBIO_ESS_REQUIRES_ISOLATED_PROCESS: i32 = 4096;
pub const WINBIO_ESS_BLOCKED_NON_ESS_FPR: i32 = 8192;
pub const WINBIO_ESS_BLOCKED_NON_ESS_CAMERA: i32 = 16384;
pub const WINBIO_ESS_SOURCE_DEFAULT: i32 = 32768;
const
  WINBIO_ESS_REQUIRES_TPM2* = 1
  WINBIO_ESS_REQUIRES_VBS_CAPABLE* = 2
  WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE* = 4
  WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO* = 8
  WINBIO_ESS_REQUIRES_VBS_RUNNING* = 16
  WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY* = 32
  WINBIO_ESS_REQUIRES_ENABLEMENT* = 64
  WINBIO_ESS_MANAGED_BY_POLICY* = 128
  WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE* = 256
  WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT* = 512
  WINBIO_ESS_REQUIRES_FACE_SENSOR* = 1024
  WINBIO_ESS_REQUIRES_FPR_SENSOR* = 2048
  WINBIO_ESS_REQUIRES_ISOLATED_PROCESS* = 4096
  WINBIO_ESS_BLOCKED_NON_ESS_FPR* = 8192
  WINBIO_ESS_BLOCKED_NON_ESS_CAMERA* = 16384
  WINBIO_ESS_SOURCE_DEFAULT* = 32768
enum WINBIO_ESS_STATE_FLAGS : int {
    WINBIO_ESS_REQUIRES_TPM2 = 1,
    WINBIO_ESS_REQUIRES_VBS_CAPABLE = 2,
    WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE = 4,
    WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO = 8,
    WINBIO_ESS_REQUIRES_VBS_RUNNING = 16,
    WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY = 32,
    WINBIO_ESS_REQUIRES_ENABLEMENT = 64,
    WINBIO_ESS_MANAGED_BY_POLICY = 128,
    WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE = 256,
    WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT = 512,
    WINBIO_ESS_REQUIRES_FACE_SENSOR = 1024,
    WINBIO_ESS_REQUIRES_FPR_SENSOR = 2048,
    WINBIO_ESS_REQUIRES_ISOLATED_PROCESS = 4096,
    WINBIO_ESS_BLOCKED_NON_ESS_FPR = 8192,
    WINBIO_ESS_BLOCKED_NON_ESS_CAMERA = 16384,
    WINBIO_ESS_SOURCE_DEFAULT = 32768,
}
#define global WINBIO_ESS_REQUIRES_TPM2                                 0x1
#define global WINBIO_ESS_REQUIRES_VBS_CAPABLE                          0x2
#define global WINBIO_ESS_REQUIRES_NON_VBS_WINDOWS_HELLO_ABSENCE        0x4
#define global WINBIO_ESS_REQUIRES_VBS_WINDOWS_HELLO                    0x8
#define global WINBIO_ESS_REQUIRES_VBS_RUNNING                          0x10
#define global WINBIO_ESS_REQUIRES_VBS_ENCRYPTION_KEY                   0x20
#define global WINBIO_ESS_REQUIRES_ENABLEMENT                           0x40
#define global WINBIO_ESS_MANAGED_BY_POLICY                             0x80
#define global WINBIO_ESS_REQUIRES_NON_VBS_BIOMETRIC_ENROLLMENT_ABSENCE 0x100
#define global WINBIO_ESS_REQUIRES_VBS_BIOMETRIC_ENROLLMENT             0x200
#define global WINBIO_ESS_REQUIRES_FACE_SENSOR                          0x400
#define global WINBIO_ESS_REQUIRES_FPR_SENSOR                           0x800
#define global WINBIO_ESS_REQUIRES_ISOLATED_PROCESS                     0x1000
#define global WINBIO_ESS_BLOCKED_NON_ESS_FPR                           0x2000
#define global WINBIO_ESS_BLOCKED_NON_ESS_CAMERA                        0x4000
#define global WINBIO_ESS_SOURCE_DEFAULT                                0x8000