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

XEKL_KEYSPEC

列挙型
基底型i4

メンバー 2

名前10進16進
XEKL_KEYSPEC_KEYX10x1
XEKL_KEYSPEC_SIG20x2

各言語での定義

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

typedef enum XEKL_KEYSPEC : int {
    XEKL_KEYSPEC_KEYX = 1,
    XEKL_KEYSPEC_SIG = 2
} XEKL_KEYSPEC;
public enum XEKL_KEYSPEC : int
{
    XEKL_KEYSPEC_KEYX = 1,
    XEKL_KEYSPEC_SIG = 2,
}
Public Enum XEKL_KEYSPEC As Integer
    XEKL_KEYSPEC_KEYX = 1
    XEKL_KEYSPEC_SIG = 2
End Enum
import enum

class XEKL_KEYSPEC(enum.IntEnum):
    XEKL_KEYSPEC_KEYX = 1
    XEKL_KEYSPEC_SIG = 2
// XEKL_KEYSPEC
pub const XEKL_KEYSPEC_KEYX: i32 = 1;
pub const XEKL_KEYSPEC_SIG: i32 = 2;
// XEKL_KEYSPEC
const (
	XEKL_KEYSPEC_KEYX int32 = 1
	XEKL_KEYSPEC_SIG int32 = 2
)
const
  XEKL_KEYSPEC_KEYX = 1;
  XEKL_KEYSPEC_SIG = 2;
// XEKL_KEYSPEC
pub const XEKL_KEYSPEC_KEYX: i32 = 1;
pub const XEKL_KEYSPEC_SIG: i32 = 2;
const
  XEKL_KEYSPEC_KEYX* = 1
  XEKL_KEYSPEC_SIG* = 2
enum XEKL_KEYSPEC : int {
    XEKL_KEYSPEC_KEYX = 1,
    XEKL_KEYSPEC_SIG = 2,
}
#define global XEKL_KEYSPEC_KEYX 0x1
#define global XEKL_KEYSPEC_SIG  0x2