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

NCPNP_RECONFIG_LAYER

列挙型
基底型i4

メンバー 2

名前10進16進
NCRL_NDIS10x1
NCRL_TDI20x2

各言語での定義

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

typedef enum NCPNP_RECONFIG_LAYER : int {
    NCRL_NDIS = 1,
    NCRL_TDI = 2
} NCPNP_RECONFIG_LAYER;
public enum NCPNP_RECONFIG_LAYER : int
{
    NCRL_NDIS = 1,
    NCRL_TDI = 2,
}
Public Enum NCPNP_RECONFIG_LAYER As Integer
    NCRL_NDIS = 1
    NCRL_TDI = 2
End Enum
import enum

class NCPNP_RECONFIG_LAYER(enum.IntEnum):
    NCRL_NDIS = 1
    NCRL_TDI = 2
// NCPNP_RECONFIG_LAYER
pub const NCRL_NDIS: i32 = 1;
pub const NCRL_TDI: i32 = 2;
// NCPNP_RECONFIG_LAYER
const (
	NCRL_NDIS int32 = 1
	NCRL_TDI int32 = 2
)
const
  NCRL_NDIS = 1;
  NCRL_TDI = 2;
// NCPNP_RECONFIG_LAYER
pub const NCRL_NDIS: i32 = 1;
pub const NCRL_TDI: i32 = 2;
const
  NCRL_NDIS* = 1
  NCRL_TDI* = 2
enum NCPNP_RECONFIG_LAYER : int {
    NCRL_NDIS = 1,
    NCRL_TDI = 2,
}
#define global NCRL_NDIS 0x1
#define global NCRL_TDI  0x2