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

MSP_CALL_EVENT

列挙型
基底型i4

メンバー 6

名前10進16進
CALL_NEW_STREAM00x0
CALL_STREAM_FAIL10x1
CALL_TERMINAL_FAIL20x2
CALL_STREAM_NOT_USED30x3
CALL_STREAM_ACTIVE40x4
CALL_STREAM_INACTIVE50x5

各言語での定義

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

typedef enum MSP_CALL_EVENT : int {
    CALL_NEW_STREAM = 0,
    CALL_STREAM_FAIL = 1,
    CALL_TERMINAL_FAIL = 2,
    CALL_STREAM_NOT_USED = 3,
    CALL_STREAM_ACTIVE = 4,
    CALL_STREAM_INACTIVE = 5
} MSP_CALL_EVENT;
public enum MSP_CALL_EVENT : int
{
    CALL_NEW_STREAM = 0,
    CALL_STREAM_FAIL = 1,
    CALL_TERMINAL_FAIL = 2,
    CALL_STREAM_NOT_USED = 3,
    CALL_STREAM_ACTIVE = 4,
    CALL_STREAM_INACTIVE = 5,
}
Public Enum MSP_CALL_EVENT As Integer
    CALL_NEW_STREAM = 0
    CALL_STREAM_FAIL = 1
    CALL_TERMINAL_FAIL = 2
    CALL_STREAM_NOT_USED = 3
    CALL_STREAM_ACTIVE = 4
    CALL_STREAM_INACTIVE = 5
End Enum
import enum

class MSP_CALL_EVENT(enum.IntEnum):
    CALL_NEW_STREAM = 0
    CALL_STREAM_FAIL = 1
    CALL_TERMINAL_FAIL = 2
    CALL_STREAM_NOT_USED = 3
    CALL_STREAM_ACTIVE = 4
    CALL_STREAM_INACTIVE = 5
// MSP_CALL_EVENT
pub const CALL_NEW_STREAM: i32 = 0;
pub const CALL_STREAM_FAIL: i32 = 1;
pub const CALL_TERMINAL_FAIL: i32 = 2;
pub const CALL_STREAM_NOT_USED: i32 = 3;
pub const CALL_STREAM_ACTIVE: i32 = 4;
pub const CALL_STREAM_INACTIVE: i32 = 5;
// MSP_CALL_EVENT
const (
	CALL_NEW_STREAM int32 = 0
	CALL_STREAM_FAIL int32 = 1
	CALL_TERMINAL_FAIL int32 = 2
	CALL_STREAM_NOT_USED int32 = 3
	CALL_STREAM_ACTIVE int32 = 4
	CALL_STREAM_INACTIVE int32 = 5
)
const
  CALL_NEW_STREAM = 0;
  CALL_STREAM_FAIL = 1;
  CALL_TERMINAL_FAIL = 2;
  CALL_STREAM_NOT_USED = 3;
  CALL_STREAM_ACTIVE = 4;
  CALL_STREAM_INACTIVE = 5;
// MSP_CALL_EVENT
pub const CALL_NEW_STREAM: i32 = 0;
pub const CALL_STREAM_FAIL: i32 = 1;
pub const CALL_TERMINAL_FAIL: i32 = 2;
pub const CALL_STREAM_NOT_USED: i32 = 3;
pub const CALL_STREAM_ACTIVE: i32 = 4;
pub const CALL_STREAM_INACTIVE: i32 = 5;
const
  CALL_NEW_STREAM* = 0
  CALL_STREAM_FAIL* = 1
  CALL_TERMINAL_FAIL* = 2
  CALL_STREAM_NOT_USED* = 3
  CALL_STREAM_ACTIVE* = 4
  CALL_STREAM_INACTIVE* = 5
enum MSP_CALL_EVENT : int {
    CALL_NEW_STREAM = 0,
    CALL_STREAM_FAIL = 1,
    CALL_TERMINAL_FAIL = 2,
    CALL_STREAM_NOT_USED = 3,
    CALL_STREAM_ACTIVE = 4,
    CALL_STREAM_INACTIVE = 5,
}
#define global CALL_NEW_STREAM      0x0
#define global CALL_STREAM_FAIL     0x1
#define global CALL_TERMINAL_FAIL   0x2
#define global CALL_STREAM_NOT_USED 0x3
#define global CALL_STREAM_ACTIVE   0x4
#define global CALL_STREAM_INACTIVE 0x5