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

CALL_MEDIA_EVENT

列挙型
基底型i4

メンバー 7

名前10進16進
CME_NEW_STREAM00x0
CME_STREAM_FAIL10x1
CME_TERMINAL_FAIL20x2
CME_STREAM_NOT_USED30x3
CME_STREAM_ACTIVE40x4
CME_STREAM_INACTIVE50x5
CME_LASTITEM50x5

各言語での定義

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

typedef enum CALL_MEDIA_EVENT : int {
    CME_NEW_STREAM = 0,
    CME_STREAM_FAIL = 1,
    CME_TERMINAL_FAIL = 2,
    CME_STREAM_NOT_USED = 3,
    CME_STREAM_ACTIVE = 4,
    CME_STREAM_INACTIVE = 5,
    CME_LASTITEM = 5
} CALL_MEDIA_EVENT;
public enum CALL_MEDIA_EVENT : int
{
    CME_NEW_STREAM = 0,
    CME_STREAM_FAIL = 1,
    CME_TERMINAL_FAIL = 2,
    CME_STREAM_NOT_USED = 3,
    CME_STREAM_ACTIVE = 4,
    CME_STREAM_INACTIVE = 5,
    CME_LASTITEM = 5,
}
Public Enum CALL_MEDIA_EVENT As Integer
    CME_NEW_STREAM = 0
    CME_STREAM_FAIL = 1
    CME_TERMINAL_FAIL = 2
    CME_STREAM_NOT_USED = 3
    CME_STREAM_ACTIVE = 4
    CME_STREAM_INACTIVE = 5
    CME_LASTITEM = 5
End Enum
import enum

class CALL_MEDIA_EVENT(enum.IntEnum):
    CME_NEW_STREAM = 0
    CME_STREAM_FAIL = 1
    CME_TERMINAL_FAIL = 2
    CME_STREAM_NOT_USED = 3
    CME_STREAM_ACTIVE = 4
    CME_STREAM_INACTIVE = 5
    CME_LASTITEM = 5
// CALL_MEDIA_EVENT
pub const CME_NEW_STREAM: i32 = 0;
pub const CME_STREAM_FAIL: i32 = 1;
pub const CME_TERMINAL_FAIL: i32 = 2;
pub const CME_STREAM_NOT_USED: i32 = 3;
pub const CME_STREAM_ACTIVE: i32 = 4;
pub const CME_STREAM_INACTIVE: i32 = 5;
pub const CME_LASTITEM: i32 = 5;
// CALL_MEDIA_EVENT
const (
	CME_NEW_STREAM int32 = 0
	CME_STREAM_FAIL int32 = 1
	CME_TERMINAL_FAIL int32 = 2
	CME_STREAM_NOT_USED int32 = 3
	CME_STREAM_ACTIVE int32 = 4
	CME_STREAM_INACTIVE int32 = 5
	CME_LASTITEM int32 = 5
)
const
  CME_NEW_STREAM = 0;
  CME_STREAM_FAIL = 1;
  CME_TERMINAL_FAIL = 2;
  CME_STREAM_NOT_USED = 3;
  CME_STREAM_ACTIVE = 4;
  CME_STREAM_INACTIVE = 5;
  CME_LASTITEM = 5;
// CALL_MEDIA_EVENT
pub const CME_NEW_STREAM: i32 = 0;
pub const CME_STREAM_FAIL: i32 = 1;
pub const CME_TERMINAL_FAIL: i32 = 2;
pub const CME_STREAM_NOT_USED: i32 = 3;
pub const CME_STREAM_ACTIVE: i32 = 4;
pub const CME_STREAM_INACTIVE: i32 = 5;
pub const CME_LASTITEM: i32 = 5;
const
  CME_NEW_STREAM* = 0
  CME_STREAM_FAIL* = 1
  CME_TERMINAL_FAIL* = 2
  CME_STREAM_NOT_USED* = 3
  CME_STREAM_ACTIVE* = 4
  CME_STREAM_INACTIVE* = 5
  CME_LASTITEM* = 5
enum CALL_MEDIA_EVENT : int {
    CME_NEW_STREAM = 0,
    CME_STREAM_FAIL = 1,
    CME_TERMINAL_FAIL = 2,
    CME_STREAM_NOT_USED = 3,
    CME_STREAM_ACTIVE = 4,
    CME_STREAM_INACTIVE = 5,
    CME_LASTITEM = 5,
}
#define global CME_NEW_STREAM      0x0
#define global CME_STREAM_FAIL     0x1
#define global CME_TERMINAL_FAIL   0x2
#define global CME_STREAM_NOT_USED 0x3
#define global CME_STREAM_ACTIVE   0x4
#define global CME_STREAM_INACTIVE 0x5
#define global CME_LASTITEM        0x5