Win32 API 日本語リファレンス
ホームSecurity.Authentication.Identity › MSV1_0

MSV1_0

列挙型
基底型u4

メンバー 2

名前10進16進
MSV1_0_PASSTHRU10x1
MSV1_0_GUEST_LOGON20x2

各言語での定義

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

typedef enum MSV1_0 : unsigned int {
    MSV1_0_PASSTHRU = 1,
    MSV1_0_GUEST_LOGON = 2
} MSV1_0;
public enum MSV1_0 : uint
{
    MSV1_0_PASSTHRU = 1,
    MSV1_0_GUEST_LOGON = 2,
}
Public Enum MSV1_0 As UInteger
    MSV1_0_PASSTHRU = 1
    MSV1_0_GUEST_LOGON = 2
End Enum
import enum

class MSV1_0(enum.IntEnum):
    MSV1_0_PASSTHRU = 1
    MSV1_0_GUEST_LOGON = 2
// MSV1_0
pub const MSV1_0_PASSTHRU: u32 = 1;
pub const MSV1_0_GUEST_LOGON: u32 = 2;
// MSV1_0
const (
	MSV1_0_PASSTHRU uint32 = 1
	MSV1_0_GUEST_LOGON uint32 = 2
)
const
  MSV1_0_PASSTHRU = 1;
  MSV1_0_GUEST_LOGON = 2;
// MSV1_0
pub const MSV1_0_PASSTHRU: u32 = 1;
pub const MSV1_0_GUEST_LOGON: u32 = 2;
const
  MSV1_0_PASSTHRU* = 1
  MSV1_0_GUEST_LOGON* = 2
enum MSV1_0 : uint {
    MSV1_0_PASSTHRU = 1,
    MSV1_0_GUEST_LOGON = 2,
}
#define global MSV1_0_PASSTHRU    0x1
#define global MSV1_0_GUEST_LOGON 0x2