ホーム › System.Hypervisor › VIRTUAL_PROCESSOR_VENDOR
VIRTUAL_PROCESSOR_VENDOR
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| ProcessorVendor_Unknown | 0 | 0x0 |
| ProcessorVendor_Amd | 1 | 0x1 |
| ProcessorVendor_Intel | 2 | 0x2 |
| ProcessorVendor_Hygon | 3 | 0x3 |
| ProcessorVendor_Arm | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum VIRTUAL_PROCESSOR_VENDOR : int {
ProcessorVendor_Unknown = 0,
ProcessorVendor_Amd = 1,
ProcessorVendor_Intel = 2,
ProcessorVendor_Hygon = 3,
ProcessorVendor_Arm = 4
} VIRTUAL_PROCESSOR_VENDOR;public enum VIRTUAL_PROCESSOR_VENDOR : int
{
ProcessorVendor_Unknown = 0,
ProcessorVendor_Amd = 1,
ProcessorVendor_Intel = 2,
ProcessorVendor_Hygon = 3,
ProcessorVendor_Arm = 4,
}Public Enum VIRTUAL_PROCESSOR_VENDOR As Integer
ProcessorVendor_Unknown = 0
ProcessorVendor_Amd = 1
ProcessorVendor_Intel = 2
ProcessorVendor_Hygon = 3
ProcessorVendor_Arm = 4
End Enumimport enum
class VIRTUAL_PROCESSOR_VENDOR(enum.IntEnum):
ProcessorVendor_Unknown = 0
ProcessorVendor_Amd = 1
ProcessorVendor_Intel = 2
ProcessorVendor_Hygon = 3
ProcessorVendor_Arm = 4// VIRTUAL_PROCESSOR_VENDOR
pub const ProcessorVendor_Unknown: i32 = 0;
pub const ProcessorVendor_Amd: i32 = 1;
pub const ProcessorVendor_Intel: i32 = 2;
pub const ProcessorVendor_Hygon: i32 = 3;
pub const ProcessorVendor_Arm: i32 = 4;// VIRTUAL_PROCESSOR_VENDOR
const (
ProcessorVendor_Unknown int32 = 0
ProcessorVendor_Amd int32 = 1
ProcessorVendor_Intel int32 = 2
ProcessorVendor_Hygon int32 = 3
ProcessorVendor_Arm int32 = 4
)const
ProcessorVendor_Unknown = 0;
ProcessorVendor_Amd = 1;
ProcessorVendor_Intel = 2;
ProcessorVendor_Hygon = 3;
ProcessorVendor_Arm = 4;// VIRTUAL_PROCESSOR_VENDOR
pub const ProcessorVendor_Unknown: i32 = 0;
pub const ProcessorVendor_Amd: i32 = 1;
pub const ProcessorVendor_Intel: i32 = 2;
pub const ProcessorVendor_Hygon: i32 = 3;
pub const ProcessorVendor_Arm: i32 = 4;const
ProcessorVendor_Unknown* = 0
ProcessorVendor_Amd* = 1
ProcessorVendor_Intel* = 2
ProcessorVendor_Hygon* = 3
ProcessorVendor_Arm* = 4enum VIRTUAL_PROCESSOR_VENDOR : int {
ProcessorVendor_Unknown = 0,
ProcessorVendor_Amd = 1,
ProcessorVendor_Intel = 2,
ProcessorVendor_Hygon = 3,
ProcessorVendor_Arm = 4,
}#define global ProcessorVendor_Unknown 0x0
#define global ProcessorVendor_Amd 0x1
#define global ProcessorVendor_Intel 0x2
#define global ProcessorVendor_Hygon 0x3
#define global ProcessorVendor_Arm 0x4