Win32 API 日本語リファレンス
ホームStorage.FileServerResourceManager › FsrmAccountType

FsrmAccountType

列挙型
基底型i4

メンバー 7

名前10進16進
FsrmAccountType_Unknown00x0
FsrmAccountType_NetworkService10x1
FsrmAccountType_LocalService20x2
FsrmAccountType_LocalSystem30x3
FsrmAccountType_InProc40x4
FsrmAccountType_External50x5
FsrmAccountType_Automatic5000x1F4

各言語での定義

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

typedef enum FsrmAccountType : int {
    FsrmAccountType_Unknown = 0,
    FsrmAccountType_NetworkService = 1,
    FsrmAccountType_LocalService = 2,
    FsrmAccountType_LocalSystem = 3,
    FsrmAccountType_InProc = 4,
    FsrmAccountType_External = 5,
    FsrmAccountType_Automatic = 500
} FsrmAccountType;
public enum FsrmAccountType : int
{
    FsrmAccountType_Unknown = 0,
    FsrmAccountType_NetworkService = 1,
    FsrmAccountType_LocalService = 2,
    FsrmAccountType_LocalSystem = 3,
    FsrmAccountType_InProc = 4,
    FsrmAccountType_External = 5,
    FsrmAccountType_Automatic = 500,
}
Public Enum FsrmAccountType As Integer
    FsrmAccountType_Unknown = 0
    FsrmAccountType_NetworkService = 1
    FsrmAccountType_LocalService = 2
    FsrmAccountType_LocalSystem = 3
    FsrmAccountType_InProc = 4
    FsrmAccountType_External = 5
    FsrmAccountType_Automatic = 500
End Enum
import enum

class FsrmAccountType(enum.IntEnum):
    FsrmAccountType_Unknown = 0
    FsrmAccountType_NetworkService = 1
    FsrmAccountType_LocalService = 2
    FsrmAccountType_LocalSystem = 3
    FsrmAccountType_InProc = 4
    FsrmAccountType_External = 5
    FsrmAccountType_Automatic = 500
// FsrmAccountType
pub const FsrmAccountType_Unknown: i32 = 0;
pub const FsrmAccountType_NetworkService: i32 = 1;
pub const FsrmAccountType_LocalService: i32 = 2;
pub const FsrmAccountType_LocalSystem: i32 = 3;
pub const FsrmAccountType_InProc: i32 = 4;
pub const FsrmAccountType_External: i32 = 5;
pub const FsrmAccountType_Automatic: i32 = 500;
// FsrmAccountType
const (
	FsrmAccountType_Unknown int32 = 0
	FsrmAccountType_NetworkService int32 = 1
	FsrmAccountType_LocalService int32 = 2
	FsrmAccountType_LocalSystem int32 = 3
	FsrmAccountType_InProc int32 = 4
	FsrmAccountType_External int32 = 5
	FsrmAccountType_Automatic int32 = 500
)
const
  FsrmAccountType_Unknown = 0;
  FsrmAccountType_NetworkService = 1;
  FsrmAccountType_LocalService = 2;
  FsrmAccountType_LocalSystem = 3;
  FsrmAccountType_InProc = 4;
  FsrmAccountType_External = 5;
  FsrmAccountType_Automatic = 500;
// FsrmAccountType
pub const FsrmAccountType_Unknown: i32 = 0;
pub const FsrmAccountType_NetworkService: i32 = 1;
pub const FsrmAccountType_LocalService: i32 = 2;
pub const FsrmAccountType_LocalSystem: i32 = 3;
pub const FsrmAccountType_InProc: i32 = 4;
pub const FsrmAccountType_External: i32 = 5;
pub const FsrmAccountType_Automatic: i32 = 500;
const
  FsrmAccountType_Unknown* = 0
  FsrmAccountType_NetworkService* = 1
  FsrmAccountType_LocalService* = 2
  FsrmAccountType_LocalSystem* = 3
  FsrmAccountType_InProc* = 4
  FsrmAccountType_External* = 5
  FsrmAccountType_Automatic* = 500
enum FsrmAccountType : int {
    FsrmAccountType_Unknown = 0,
    FsrmAccountType_NetworkService = 1,
    FsrmAccountType_LocalService = 2,
    FsrmAccountType_LocalSystem = 3,
    FsrmAccountType_InProc = 4,
    FsrmAccountType_External = 5,
    FsrmAccountType_Automatic = 500,
}
#define global FsrmAccountType_Unknown        0x0
#define global FsrmAccountType_NetworkService 0x1
#define global FsrmAccountType_LocalService   0x2
#define global FsrmAccountType_LocalSystem    0x3
#define global FsrmAccountType_InProc         0x4
#define global FsrmAccountType_External       0x5
#define global FsrmAccountType_Automatic      0x1F4