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

MODEMSETTINGS_SPEAKER_MODE

列挙型
基底型u4

メンバー 4

名前10進16進
MDMSPKR_CALLSETUP80x8
MDMSPKR_DIAL20x2
MDMSPKR_OFF10x1
MDMSPKR_ON40x4

各言語での定義

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

typedef enum MODEMSETTINGS_SPEAKER_MODE : unsigned int {
    MDMSPKR_CALLSETUP = 8,
    MDMSPKR_DIAL = 2,
    MDMSPKR_OFF = 1,
    MDMSPKR_ON = 4
} MODEMSETTINGS_SPEAKER_MODE;
public enum MODEMSETTINGS_SPEAKER_MODE : uint
{
    MDMSPKR_CALLSETUP = 8,
    MDMSPKR_DIAL = 2,
    MDMSPKR_OFF = 1,
    MDMSPKR_ON = 4,
}
Public Enum MODEMSETTINGS_SPEAKER_MODE As UInteger
    MDMSPKR_CALLSETUP = 8
    MDMSPKR_DIAL = 2
    MDMSPKR_OFF = 1
    MDMSPKR_ON = 4
End Enum
import enum

class MODEMSETTINGS_SPEAKER_MODE(enum.IntEnum):
    MDMSPKR_CALLSETUP = 8
    MDMSPKR_DIAL = 2
    MDMSPKR_OFF = 1
    MDMSPKR_ON = 4
// MODEMSETTINGS_SPEAKER_MODE
pub const MDMSPKR_CALLSETUP: u32 = 8;
pub const MDMSPKR_DIAL: u32 = 2;
pub const MDMSPKR_OFF: u32 = 1;
pub const MDMSPKR_ON: u32 = 4;
// MODEMSETTINGS_SPEAKER_MODE
const (
	MDMSPKR_CALLSETUP uint32 = 8
	MDMSPKR_DIAL uint32 = 2
	MDMSPKR_OFF uint32 = 1
	MDMSPKR_ON uint32 = 4
)
const
  MDMSPKR_CALLSETUP = 8;
  MDMSPKR_DIAL = 2;
  MDMSPKR_OFF = 1;
  MDMSPKR_ON = 4;
// MODEMSETTINGS_SPEAKER_MODE
pub const MDMSPKR_CALLSETUP: u32 = 8;
pub const MDMSPKR_DIAL: u32 = 2;
pub const MDMSPKR_OFF: u32 = 1;
pub const MDMSPKR_ON: u32 = 4;
const
  MDMSPKR_CALLSETUP* = 8
  MDMSPKR_DIAL* = 2
  MDMSPKR_OFF* = 1
  MDMSPKR_ON* = 4
enum MODEMSETTINGS_SPEAKER_MODE : uint {
    MDMSPKR_CALLSETUP = 8,
    MDMSPKR_DIAL = 2,
    MDMSPKR_OFF = 1,
    MDMSPKR_ON = 4,
}
#define global MDMSPKR_CALLSETUP 0x8
#define global MDMSPKR_DIAL      0x2
#define global MDMSPKR_OFF       0x1
#define global MDMSPKR_ON        0x4