Win32 API 日本語リファレンス
ホームSecurity.Cryptography › SECRET_TYPE

SECRET_TYPE

列挙型
基底型i4

メンバー 4

名前10進16進
AlphaNumericPinType00x0
ExternalPinType10x1
ChallengeResponsePinType20x2
EmptyPinType30x3

各言語での定義

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

typedef enum SECRET_TYPE : int {
    AlphaNumericPinType = 0,
    ExternalPinType = 1,
    ChallengeResponsePinType = 2,
    EmptyPinType = 3
} SECRET_TYPE;
public enum SECRET_TYPE : int
{
    AlphaNumericPinType = 0,
    ExternalPinType = 1,
    ChallengeResponsePinType = 2,
    EmptyPinType = 3,
}
Public Enum SECRET_TYPE As Integer
    AlphaNumericPinType = 0
    ExternalPinType = 1
    ChallengeResponsePinType = 2
    EmptyPinType = 3
End Enum
import enum

class SECRET_TYPE(enum.IntEnum):
    AlphaNumericPinType = 0
    ExternalPinType = 1
    ChallengeResponsePinType = 2
    EmptyPinType = 3
// SECRET_TYPE
pub const AlphaNumericPinType: i32 = 0;
pub const ExternalPinType: i32 = 1;
pub const ChallengeResponsePinType: i32 = 2;
pub const EmptyPinType: i32 = 3;
// SECRET_TYPE
const (
	AlphaNumericPinType int32 = 0
	ExternalPinType int32 = 1
	ChallengeResponsePinType int32 = 2
	EmptyPinType int32 = 3
)
const
  AlphaNumericPinType = 0;
  ExternalPinType = 1;
  ChallengeResponsePinType = 2;
  EmptyPinType = 3;
// SECRET_TYPE
pub const AlphaNumericPinType: i32 = 0;
pub const ExternalPinType: i32 = 1;
pub const ChallengeResponsePinType: i32 = 2;
pub const EmptyPinType: i32 = 3;
const
  AlphaNumericPinType* = 0
  ExternalPinType* = 1
  ChallengeResponsePinType* = 2
  EmptyPinType* = 3
enum SECRET_TYPE : int {
    AlphaNumericPinType = 0,
    ExternalPinType = 1,
    ChallengeResponsePinType = 2,
    EmptyPinType = 3,
}
#define global AlphaNumericPinType      0x0
#define global ExternalPinType          0x1
#define global ChallengeResponsePinType 0x2
#define global EmptyPinType             0x3