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

HDV_DEVICE_TYPE

列挙型
基底型i4

メンバー 2

名前10進16進
HdvDeviceTypeUndefined00x0
HdvDeviceTypePCI10x1

各言語での定義

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

typedef enum HDV_DEVICE_TYPE : int {
    HdvDeviceTypeUndefined = 0,
    HdvDeviceTypePCI = 1
} HDV_DEVICE_TYPE;
public enum HDV_DEVICE_TYPE : int
{
    HdvDeviceTypeUndefined = 0,
    HdvDeviceTypePCI = 1,
}
Public Enum HDV_DEVICE_TYPE As Integer
    HdvDeviceTypeUndefined = 0
    HdvDeviceTypePCI = 1
End Enum
import enum

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