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

NETCONUI_CONNECT_FLAGS

列挙型
基底型i4

メンバー 3

名前10進16進
NCUC_DEFAULT00x0
NCUC_NO_UI10x1
NCUC_ENABLE_DISABLE20x2

各言語での定義

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

typedef enum NETCONUI_CONNECT_FLAGS : int {
    NCUC_DEFAULT = 0,
    NCUC_NO_UI = 1,
    NCUC_ENABLE_DISABLE = 2
} NETCONUI_CONNECT_FLAGS;
public enum NETCONUI_CONNECT_FLAGS : int
{
    NCUC_DEFAULT = 0,
    NCUC_NO_UI = 1,
    NCUC_ENABLE_DISABLE = 2,
}
Public Enum NETCONUI_CONNECT_FLAGS As Integer
    NCUC_DEFAULT = 0
    NCUC_NO_UI = 1
    NCUC_ENABLE_DISABLE = 2
End Enum
import enum

class NETCONUI_CONNECT_FLAGS(enum.IntEnum):
    NCUC_DEFAULT = 0
    NCUC_NO_UI = 1
    NCUC_ENABLE_DISABLE = 2
// NETCONUI_CONNECT_FLAGS
pub const NCUC_DEFAULT: i32 = 0;
pub const NCUC_NO_UI: i32 = 1;
pub const NCUC_ENABLE_DISABLE: i32 = 2;
// NETCONUI_CONNECT_FLAGS
const (
	NCUC_DEFAULT int32 = 0
	NCUC_NO_UI int32 = 1
	NCUC_ENABLE_DISABLE int32 = 2
)
const
  NCUC_DEFAULT = 0;
  NCUC_NO_UI = 1;
  NCUC_ENABLE_DISABLE = 2;
// NETCONUI_CONNECT_FLAGS
pub const NCUC_DEFAULT: i32 = 0;
pub const NCUC_NO_UI: i32 = 1;
pub const NCUC_ENABLE_DISABLE: i32 = 2;
const
  NCUC_DEFAULT* = 0
  NCUC_NO_UI* = 1
  NCUC_ENABLE_DISABLE* = 2
enum NETCONUI_CONNECT_FLAGS : int {
    NCUC_DEFAULT = 0,
    NCUC_NO_UI = 1,
    NCUC_ENABLE_DISABLE = 2,
}
#define global NCUC_DEFAULT        0x0
#define global NCUC_NO_UI          0x1
#define global NCUC_ENABLE_DISABLE 0x2