Win32 API 日本語リファレンス
ホームNetworking.RemoteDifferentialCompression › RdcCreatedTables

RdcCreatedTables

列挙型
基底型i4

メンバー 3

名前10進16進
RDCTABLE_InvalidOrUnknown00x0
RDCTABLE_Existing10x1
RDCTABLE_New20x2

各言語での定義

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

typedef enum RdcCreatedTables : int {
    RDCTABLE_InvalidOrUnknown = 0,
    RDCTABLE_Existing = 1,
    RDCTABLE_New = 2
} RdcCreatedTables;
public enum RdcCreatedTables : int
{
    RDCTABLE_InvalidOrUnknown = 0,
    RDCTABLE_Existing = 1,
    RDCTABLE_New = 2,
}
Public Enum RdcCreatedTables As Integer
    RDCTABLE_InvalidOrUnknown = 0
    RDCTABLE_Existing = 1
    RDCTABLE_New = 2
End Enum
import enum

class RdcCreatedTables(enum.IntEnum):
    RDCTABLE_InvalidOrUnknown = 0
    RDCTABLE_Existing = 1
    RDCTABLE_New = 2
// RdcCreatedTables
pub const RDCTABLE_InvalidOrUnknown: i32 = 0;
pub const RDCTABLE_Existing: i32 = 1;
pub const RDCTABLE_New: i32 = 2;
// RdcCreatedTables
const (
	RDCTABLE_InvalidOrUnknown int32 = 0
	RDCTABLE_Existing int32 = 1
	RDCTABLE_New int32 = 2
)
const
  RDCTABLE_InvalidOrUnknown = 0;
  RDCTABLE_Existing = 1;
  RDCTABLE_New = 2;
// RdcCreatedTables
pub const RDCTABLE_InvalidOrUnknown: i32 = 0;
pub const RDCTABLE_Existing: i32 = 1;
pub const RDCTABLE_New: i32 = 2;
const
  RDCTABLE_InvalidOrUnknown* = 0
  RDCTABLE_Existing* = 1
  RDCTABLE_New* = 2
enum RdcCreatedTables : int {
    RDCTABLE_InvalidOrUnknown = 0,
    RDCTABLE_Existing = 1,
    RDCTABLE_New = 2,
}
#define global RDCTABLE_InvalidOrUnknown 0x0
#define global RDCTABLE_Existing         0x1
#define global RDCTABLE_New              0x2