Win32 API 日本語リファレンス
ホームNetworkManagement.NetManagement › MSA_INFO_ACCOUNT_TYPE

MSA_INFO_ACCOUNT_TYPE

列挙型
基底型i4

メンバー 4

名前10進16進
MsaAccountFalse00x0
StandAloneManagedServiceAccount10x1
GroupManagedServiceAccount20x2
DelegatedManagedServiceAccount30x3

各言語での定義

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

typedef enum MSA_INFO_ACCOUNT_TYPE : int {
    MsaAccountFalse = 0,
    StandAloneManagedServiceAccount = 1,
    GroupManagedServiceAccount = 2,
    DelegatedManagedServiceAccount = 3
} MSA_INFO_ACCOUNT_TYPE;
public enum MSA_INFO_ACCOUNT_TYPE : int
{
    MsaAccountFalse = 0,
    StandAloneManagedServiceAccount = 1,
    GroupManagedServiceAccount = 2,
    DelegatedManagedServiceAccount = 3,
}
Public Enum MSA_INFO_ACCOUNT_TYPE As Integer
    MsaAccountFalse = 0
    StandAloneManagedServiceAccount = 1
    GroupManagedServiceAccount = 2
    DelegatedManagedServiceAccount = 3
End Enum
import enum

class MSA_INFO_ACCOUNT_TYPE(enum.IntEnum):
    MsaAccountFalse = 0
    StandAloneManagedServiceAccount = 1
    GroupManagedServiceAccount = 2
    DelegatedManagedServiceAccount = 3
// MSA_INFO_ACCOUNT_TYPE
pub const MsaAccountFalse: i32 = 0;
pub const StandAloneManagedServiceAccount: i32 = 1;
pub const GroupManagedServiceAccount: i32 = 2;
pub const DelegatedManagedServiceAccount: i32 = 3;
// MSA_INFO_ACCOUNT_TYPE
const (
	MsaAccountFalse int32 = 0
	StandAloneManagedServiceAccount int32 = 1
	GroupManagedServiceAccount int32 = 2
	DelegatedManagedServiceAccount int32 = 3
)
const
  MsaAccountFalse = 0;
  StandAloneManagedServiceAccount = 1;
  GroupManagedServiceAccount = 2;
  DelegatedManagedServiceAccount = 3;
// MSA_INFO_ACCOUNT_TYPE
pub const MsaAccountFalse: i32 = 0;
pub const StandAloneManagedServiceAccount: i32 = 1;
pub const GroupManagedServiceAccount: i32 = 2;
pub const DelegatedManagedServiceAccount: i32 = 3;
const
  MsaAccountFalse* = 0
  StandAloneManagedServiceAccount* = 1
  GroupManagedServiceAccount* = 2
  DelegatedManagedServiceAccount* = 3
enum MSA_INFO_ACCOUNT_TYPE : int {
    MsaAccountFalse = 0,
    StandAloneManagedServiceAccount = 1,
    GroupManagedServiceAccount = 2,
    DelegatedManagedServiceAccount = 3,
}
#define global MsaAccountFalse                 0x0
#define global StandAloneManagedServiceAccount 0x1
#define global GroupManagedServiceAccount      0x2
#define global DelegatedManagedServiceAccount  0x3