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

CRED_PERSIST

列挙型
基底型u4

メンバー 4

名前10進16進
CRED_PERSIST_NONE00x0
CRED_PERSIST_SESSION10x1
CRED_PERSIST_LOCAL_MACHINE20x2
CRED_PERSIST_ENTERPRISE30x3

各言語での定義

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

typedef enum CRED_PERSIST : unsigned int {
    CRED_PERSIST_NONE = 0,
    CRED_PERSIST_SESSION = 1,
    CRED_PERSIST_LOCAL_MACHINE = 2,
    CRED_PERSIST_ENTERPRISE = 3
} CRED_PERSIST;
public enum CRED_PERSIST : uint
{
    CRED_PERSIST_NONE = 0,
    CRED_PERSIST_SESSION = 1,
    CRED_PERSIST_LOCAL_MACHINE = 2,
    CRED_PERSIST_ENTERPRISE = 3,
}
Public Enum CRED_PERSIST As UInteger
    CRED_PERSIST_NONE = 0
    CRED_PERSIST_SESSION = 1
    CRED_PERSIST_LOCAL_MACHINE = 2
    CRED_PERSIST_ENTERPRISE = 3
End Enum
import enum

class CRED_PERSIST(enum.IntEnum):
    CRED_PERSIST_NONE = 0
    CRED_PERSIST_SESSION = 1
    CRED_PERSIST_LOCAL_MACHINE = 2
    CRED_PERSIST_ENTERPRISE = 3
// CRED_PERSIST
pub const CRED_PERSIST_NONE: u32 = 0;
pub const CRED_PERSIST_SESSION: u32 = 1;
pub const CRED_PERSIST_LOCAL_MACHINE: u32 = 2;
pub const CRED_PERSIST_ENTERPRISE: u32 = 3;
// CRED_PERSIST
const (
	CRED_PERSIST_NONE uint32 = 0
	CRED_PERSIST_SESSION uint32 = 1
	CRED_PERSIST_LOCAL_MACHINE uint32 = 2
	CRED_PERSIST_ENTERPRISE uint32 = 3
)
const
  CRED_PERSIST_NONE = 0;
  CRED_PERSIST_SESSION = 1;
  CRED_PERSIST_LOCAL_MACHINE = 2;
  CRED_PERSIST_ENTERPRISE = 3;
// CRED_PERSIST
pub const CRED_PERSIST_NONE: u32 = 0;
pub const CRED_PERSIST_SESSION: u32 = 1;
pub const CRED_PERSIST_LOCAL_MACHINE: u32 = 2;
pub const CRED_PERSIST_ENTERPRISE: u32 = 3;
const
  CRED_PERSIST_NONE* = 0
  CRED_PERSIST_SESSION* = 1
  CRED_PERSIST_LOCAL_MACHINE* = 2
  CRED_PERSIST_ENTERPRISE* = 3
enum CRED_PERSIST : uint {
    CRED_PERSIST_NONE = 0,
    CRED_PERSIST_SESSION = 1,
    CRED_PERSIST_LOCAL_MACHINE = 2,
    CRED_PERSIST_ENTERPRISE = 3,
}
#define global CRED_PERSIST_NONE          0x0
#define global CRED_PERSIST_SESSION       0x1
#define global CRED_PERSIST_LOCAL_MACHINE 0x2
#define global CRED_PERSIST_ENTERPRISE    0x3