Win32 API 日本語リファレンス
ホームDevices.PortableDevices › SYSTEM_RADIO_STATE

SYSTEM_RADIO_STATE

列挙型
基底型i4

メンバー 2

名前10進16進
SRS_RADIO_ENABLED00x0
SRS_RADIO_DISABLED10x1

各言語での定義

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

typedef enum SYSTEM_RADIO_STATE : int {
    SRS_RADIO_ENABLED = 0,
    SRS_RADIO_DISABLED = 1
} SYSTEM_RADIO_STATE;
public enum SYSTEM_RADIO_STATE : int
{
    SRS_RADIO_ENABLED = 0,
    SRS_RADIO_DISABLED = 1,
}
Public Enum SYSTEM_RADIO_STATE As Integer
    SRS_RADIO_ENABLED = 0
    SRS_RADIO_DISABLED = 1
End Enum
import enum

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