ホーム › NetworkManagement.NetManagement › MSA_INFO_STATE
MSA_INFO_STATE
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| MsaInfoNotExist | 1 | 0x1 |
| MsaInfoNotService | 2 | 0x2 |
| MsaInfoCannotInstall | 3 | 0x3 |
| MsaInfoCanInstall | 4 | 0x4 |
| MsaInfoInstalled | 5 | 0x5 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 5enum 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