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

PFXExportOptions

列挙型
基底型i4

メンバー 3

名前10進16進
PFXExportEEOnly00x0
PFXExportChainNoRoot10x1
PFXExportChainWithRoot20x2

各言語での定義

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

typedef enum PFXExportOptions : int {
    PFXExportEEOnly = 0,
    PFXExportChainNoRoot = 1,
    PFXExportChainWithRoot = 2
} PFXExportOptions;
public enum PFXExportOptions : int
{
    PFXExportEEOnly = 0,
    PFXExportChainNoRoot = 1,
    PFXExportChainWithRoot = 2,
}
Public Enum PFXExportOptions As Integer
    PFXExportEEOnly = 0
    PFXExportChainNoRoot = 1
    PFXExportChainWithRoot = 2
End Enum
import enum

class PFXExportOptions(enum.IntEnum):
    PFXExportEEOnly = 0
    PFXExportChainNoRoot = 1
    PFXExportChainWithRoot = 2
// PFXExportOptions
pub const PFXExportEEOnly: i32 = 0;
pub const PFXExportChainNoRoot: i32 = 1;
pub const PFXExportChainWithRoot: i32 = 2;
// PFXExportOptions
const (
	PFXExportEEOnly int32 = 0
	PFXExportChainNoRoot int32 = 1
	PFXExportChainWithRoot int32 = 2
)
const
  PFXExportEEOnly = 0;
  PFXExportChainNoRoot = 1;
  PFXExportChainWithRoot = 2;
// PFXExportOptions
pub const PFXExportEEOnly: i32 = 0;
pub const PFXExportChainNoRoot: i32 = 1;
pub const PFXExportChainWithRoot: i32 = 2;
const
  PFXExportEEOnly* = 0
  PFXExportChainNoRoot* = 1
  PFXExportChainWithRoot* = 2
enum PFXExportOptions : int {
    PFXExportEEOnly = 0,
    PFXExportChainNoRoot = 1,
    PFXExportChainWithRoot = 2,
}
#define global PFXExportEEOnly        0x0
#define global PFXExportChainNoRoot   0x1
#define global PFXExportChainWithRoot 0x2