Win32 API 日本語リファレンス
ホームSystem.RealTimeCommunications › RTC_RING_TYPE

RTC_RING_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
RTCRT_PHONE00x0
RTCRT_MESSAGE10x1
RTCRT_RINGBACK20x2

各言語での定義

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

typedef enum RTC_RING_TYPE : int {
    RTCRT_PHONE = 0,
    RTCRT_MESSAGE = 1,
    RTCRT_RINGBACK = 2
} RTC_RING_TYPE;
public enum RTC_RING_TYPE : int
{
    RTCRT_PHONE = 0,
    RTCRT_MESSAGE = 1,
    RTCRT_RINGBACK = 2,
}
Public Enum RTC_RING_TYPE As Integer
    RTCRT_PHONE = 0
    RTCRT_MESSAGE = 1
    RTCRT_RINGBACK = 2
End Enum
import enum

class RTC_RING_TYPE(enum.IntEnum):
    RTCRT_PHONE = 0
    RTCRT_MESSAGE = 1
    RTCRT_RINGBACK = 2
// RTC_RING_TYPE
pub const RTCRT_PHONE: i32 = 0;
pub const RTCRT_MESSAGE: i32 = 1;
pub const RTCRT_RINGBACK: i32 = 2;
// RTC_RING_TYPE
const (
	RTCRT_PHONE int32 = 0
	RTCRT_MESSAGE int32 = 1
	RTCRT_RINGBACK int32 = 2
)
const
  RTCRT_PHONE = 0;
  RTCRT_MESSAGE = 1;
  RTCRT_RINGBACK = 2;
// RTC_RING_TYPE
pub const RTCRT_PHONE: i32 = 0;
pub const RTCRT_MESSAGE: i32 = 1;
pub const RTCRT_RINGBACK: i32 = 2;
const
  RTCRT_PHONE* = 0
  RTCRT_MESSAGE* = 1
  RTCRT_RINGBACK* = 2
enum RTC_RING_TYPE : int {
    RTCRT_PHONE = 0,
    RTCRT_MESSAGE = 1,
    RTCRT_RINGBACK = 2,
}
#define global RTCRT_PHONE    0x0
#define global RTCRT_MESSAGE  0x1
#define global RTCRT_RINGBACK 0x2