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

CVRC_TABLE

列挙型
基底型i4

メンバー 4

名前10進16進
CVRC_TABLE_ATTRIBUTES163840x4000
CVRC_TABLE_CRL204800x5000
CVRC_TABLE_EXTENSIONS122880x3000
CVRC_TABLE_REQCERT00x0

各言語での定義

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

typedef enum CVRC_TABLE : int {
    CVRC_TABLE_ATTRIBUTES = 16384,
    CVRC_TABLE_CRL = 20480,
    CVRC_TABLE_EXTENSIONS = 12288,
    CVRC_TABLE_REQCERT = 0
} CVRC_TABLE;
public enum CVRC_TABLE : int
{
    CVRC_TABLE_ATTRIBUTES = 16384,
    CVRC_TABLE_CRL = 20480,
    CVRC_TABLE_EXTENSIONS = 12288,
    CVRC_TABLE_REQCERT = 0,
}
Public Enum CVRC_TABLE As Integer
    CVRC_TABLE_ATTRIBUTES = 16384
    CVRC_TABLE_CRL = 20480
    CVRC_TABLE_EXTENSIONS = 12288
    CVRC_TABLE_REQCERT = 0
End Enum
import enum

class CVRC_TABLE(enum.IntEnum):
    CVRC_TABLE_ATTRIBUTES = 16384
    CVRC_TABLE_CRL = 20480
    CVRC_TABLE_EXTENSIONS = 12288
    CVRC_TABLE_REQCERT = 0
// CVRC_TABLE
pub const CVRC_TABLE_ATTRIBUTES: i32 = 16384;
pub const CVRC_TABLE_CRL: i32 = 20480;
pub const CVRC_TABLE_EXTENSIONS: i32 = 12288;
pub const CVRC_TABLE_REQCERT: i32 = 0;
// CVRC_TABLE
const (
	CVRC_TABLE_ATTRIBUTES int32 = 16384
	CVRC_TABLE_CRL int32 = 20480
	CVRC_TABLE_EXTENSIONS int32 = 12288
	CVRC_TABLE_REQCERT int32 = 0
)
const
  CVRC_TABLE_ATTRIBUTES = 16384;
  CVRC_TABLE_CRL = 20480;
  CVRC_TABLE_EXTENSIONS = 12288;
  CVRC_TABLE_REQCERT = 0;
// CVRC_TABLE
pub const CVRC_TABLE_ATTRIBUTES: i32 = 16384;
pub const CVRC_TABLE_CRL: i32 = 20480;
pub const CVRC_TABLE_EXTENSIONS: i32 = 12288;
pub const CVRC_TABLE_REQCERT: i32 = 0;
const
  CVRC_TABLE_ATTRIBUTES* = 16384
  CVRC_TABLE_CRL* = 20480
  CVRC_TABLE_EXTENSIONS* = 12288
  CVRC_TABLE_REQCERT* = 0
enum CVRC_TABLE : int {
    CVRC_TABLE_ATTRIBUTES = 16384,
    CVRC_TABLE_CRL = 20480,
    CVRC_TABLE_EXTENSIONS = 12288,
    CVRC_TABLE_REQCERT = 0,
}
#define global CVRC_TABLE_ATTRIBUTES 0x4000
#define global CVRC_TABLE_CRL        0x5000
#define global CVRC_TABLE_EXTENSIONS 0x3000
#define global CVRC_TABLE_REQCERT    0x0