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

MSA_INFO_STATE

列挙型
基底型i4

メンバー 5

名前10進16進
MsaInfoNotExist10x1
MsaInfoNotService20x2
MsaInfoCannotInstall30x3
MsaInfoCanInstall40x4
MsaInfoInstalled50x5

各言語での定義

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

typedef enum MSA_INFO_STATE : int {
    MsaInfoNotExist = 1,
    MsaInfoNotService = 2,
    MsaInfoCannotInstall = 3,
    MsaInfoCanInstall = 4,
    MsaInfoInstalled = 5
} MSA_INFO_STATE;
public enum MSA_INFO_STATE : int
{
    MsaInfoNotExist = 1,
    MsaInfoNotService = 2,
    MsaInfoCannotInstall = 3,
    MsaInfoCanInstall = 4,
    MsaInfoInstalled = 5,
}
Public Enum MSA_INFO_STATE As Integer
    MsaInfoNotExist = 1
    MsaInfoNotService = 2
    MsaInfoCannotInstall = 3
    MsaInfoCanInstall = 4
    MsaInfoInstalled = 5
End Enum
import enum

class MSA_INFO_STATE(enum.IntEnum):
    MsaInfoNotExist = 1
    MsaInfoNotService = 2
    MsaInfoCannotInstall = 3
    MsaInfoCanInstall = 4
    MsaInfoInstalled = 5
// MSA_INFO_STATE
pub const MsaInfoNotExist: i32 = 1;
pub const MsaInfoNotService: i32 = 2;
pub const MsaInfoCannotInstall: i32 = 3;
pub const MsaInfoCanInstall: i32 = 4;
pub const MsaInfoInstalled: i32 = 5;
// MSA_INFO_STATE
const (
	MsaInfoNotExist int32 = 1
	MsaInfoNotService int32 = 2
	MsaInfoCannotInstall int32 = 3
	MsaInfoCanInstall int32 = 4
	MsaInfoInstalled int32 = 5
)
const
  MsaInfoNotExist = 1;
  MsaInfoNotService = 2;
  MsaInfoCannotInstall = 3;
  MsaInfoCanInstall = 4;
  MsaInfoInstalled = 5;
// MSA_INFO_STATE
pub const MsaInfoNotExist: i32 = 1;
pub const MsaInfoNotService: i32 = 2;
pub const MsaInfoCannotInstall: i32 = 3;
pub const MsaInfoCanInstall: i32 = 4;
pub const MsaInfoInstalled: i32 = 5;
const
  MsaInfoNotExist* = 1
  MsaInfoNotService* = 2
  MsaInfoCannotInstall* = 3
  MsaInfoCanInstall* = 4
  MsaInfoInstalled* = 5
enum MSA_INFO_STATE : int {
    MsaInfoNotExist = 1,
    MsaInfoNotService = 2,
    MsaInfoCannotInstall = 3,
    MsaInfoCanInstall = 4,
    MsaInfoInstalled = 5,
}
#define global MsaInfoNotExist      0x1
#define global MsaInfoNotService    0x2
#define global MsaInfoCannotInstall 0x3
#define global MsaInfoCanInstall    0x4
#define global MsaInfoInstalled     0x5