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

RUNTIME_REPORT_TYPE

列挙型
基底型i4

メンバー 2

名前10進16進
RuntimeReportTypeDriver00x0
RuntimeReportTypeMax10x1

各言語での定義

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

typedef enum RUNTIME_REPORT_TYPE : int {
    RuntimeReportTypeDriver = 0,
    RuntimeReportTypeMax = 1
} RUNTIME_REPORT_TYPE;
public enum RUNTIME_REPORT_TYPE : int
{
    RuntimeReportTypeDriver = 0,
    RuntimeReportTypeMax = 1,
}
Public Enum RUNTIME_REPORT_TYPE As Integer
    RuntimeReportTypeDriver = 0
    RuntimeReportTypeMax = 1
End Enum
import enum

class RUNTIME_REPORT_TYPE(enum.IntEnum):
    RuntimeReportTypeDriver = 0
    RuntimeReportTypeMax = 1
// RUNTIME_REPORT_TYPE
pub const RuntimeReportTypeDriver: i32 = 0;
pub const RuntimeReportTypeMax: i32 = 1;
// RUNTIME_REPORT_TYPE
const (
	RuntimeReportTypeDriver int32 = 0
	RuntimeReportTypeMax int32 = 1
)
const
  RuntimeReportTypeDriver = 0;
  RuntimeReportTypeMax = 1;
// RUNTIME_REPORT_TYPE
pub const RuntimeReportTypeDriver: i32 = 0;
pub const RuntimeReportTypeMax: i32 = 1;
const
  RuntimeReportTypeDriver* = 0
  RuntimeReportTypeMax* = 1
enum RUNTIME_REPORT_TYPE : int {
    RuntimeReportTypeDriver = 0,
    RuntimeReportTypeMax = 1,
}
#define global RuntimeReportTypeDriver 0x0
#define global RuntimeReportTypeMax    0x1