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

MSA_INFO_LEVEL

列挙型
基底型i4

メンバー 3

名前10進16進
MsaInfoLevel000x0
MsaInfoLevel110x1
MsaInfoLevelMax20x2

各言語での定義

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

typedef enum MSA_INFO_LEVEL : int {
    MsaInfoLevel0 = 0,
    MsaInfoLevel1 = 1,
    MsaInfoLevelMax = 2
} MSA_INFO_LEVEL;
public enum MSA_INFO_LEVEL : int
{
    MsaInfoLevel0 = 0,
    MsaInfoLevel1 = 1,
    MsaInfoLevelMax = 2,
}
Public Enum MSA_INFO_LEVEL As Integer
    MsaInfoLevel0 = 0
    MsaInfoLevel1 = 1
    MsaInfoLevelMax = 2
End Enum
import enum

class MSA_INFO_LEVEL(enum.IntEnum):
    MsaInfoLevel0 = 0
    MsaInfoLevel1 = 1
    MsaInfoLevelMax = 2
// MSA_INFO_LEVEL
pub const MsaInfoLevel0: i32 = 0;
pub const MsaInfoLevel1: i32 = 1;
pub const MsaInfoLevelMax: i32 = 2;
// MSA_INFO_LEVEL
const (
	MsaInfoLevel0 int32 = 0
	MsaInfoLevel1 int32 = 1
	MsaInfoLevelMax int32 = 2
)
const
  MsaInfoLevel0 = 0;
  MsaInfoLevel1 = 1;
  MsaInfoLevelMax = 2;
// MSA_INFO_LEVEL
pub const MsaInfoLevel0: i32 = 0;
pub const MsaInfoLevel1: i32 = 1;
pub const MsaInfoLevelMax: i32 = 2;
const
  MsaInfoLevel0* = 0
  MsaInfoLevel1* = 1
  MsaInfoLevelMax* = 2
enum MSA_INFO_LEVEL : int {
    MsaInfoLevel0 = 0,
    MsaInfoLevel1 = 1,
    MsaInfoLevelMax = 2,
}
#define global MsaInfoLevel0   0x0
#define global MsaInfoLevel1   0x1
#define global MsaInfoLevelMax 0x2