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

MBN_RADIO

列挙型
基底型i4

メンバー 2

名前10進16進
MBN_RADIO_OFF00x0
MBN_RADIO_ON10x1

各言語での定義

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

typedef enum MBN_RADIO : int {
    MBN_RADIO_OFF = 0,
    MBN_RADIO_ON = 1
} MBN_RADIO;
public enum MBN_RADIO : int
{
    MBN_RADIO_OFF = 0,
    MBN_RADIO_ON = 1,
}
Public Enum MBN_RADIO As Integer
    MBN_RADIO_OFF = 0
    MBN_RADIO_ON = 1
End Enum
import enum

class MBN_RADIO(enum.IntEnum):
    MBN_RADIO_OFF = 0
    MBN_RADIO_ON = 1
// MBN_RADIO
pub const MBN_RADIO_OFF: i32 = 0;
pub const MBN_RADIO_ON: i32 = 1;
// MBN_RADIO
const (
	MBN_RADIO_OFF int32 = 0
	MBN_RADIO_ON int32 = 1
)
const
  MBN_RADIO_OFF = 0;
  MBN_RADIO_ON = 1;
// MBN_RADIO
pub const MBN_RADIO_OFF: i32 = 0;
pub const MBN_RADIO_ON: i32 = 1;
const
  MBN_RADIO_OFF* = 0
  MBN_RADIO_ON* = 1
enum MBN_RADIO : int {
    MBN_RADIO_OFF = 0,
    MBN_RADIO_ON = 1,
}
#define global MBN_RADIO_OFF 0x0
#define global MBN_RADIO_ON  0x1