mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:53:06 +00:00
[SDK] Add CPUID_EXTENDED_STATE_SIZE_OFFSET_REGS
This commit is contained in:
parent
9ea129b8a9
commit
0e2788de4a
1 changed files with 14 additions and 0 deletions
|
@ -114,6 +114,20 @@ typedef union
|
||||||
};
|
};
|
||||||
} CPUID_EXTENDED_STATE_SUB_LEAF_REGS;
|
} CPUID_EXTENDED_STATE_SUB_LEAF_REGS;
|
||||||
|
|
||||||
|
// CPUID_EXTENDED_STATE (0x0D)
|
||||||
|
// CPUID_EXTENDED_STATE_SIZE_OFFSET (0x02 .. 0x1F)
|
||||||
|
typedef union
|
||||||
|
{
|
||||||
|
INT32 AsInt32[4];
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
UINT32 Size;
|
||||||
|
UINT32 Offset;
|
||||||
|
CPUID_EXTENDED_STATE_SIZE_OFFSET_ECX Ecx;
|
||||||
|
UINT32 Edx;
|
||||||
|
};
|
||||||
|
} CPUID_EXTENDED_STATE_SIZE_OFFSET_REGS;
|
||||||
|
|
||||||
// CPUID_EXTENDED_CPU_SIG (0x80000001)
|
// CPUID_EXTENDED_CPU_SIG (0x80000001)
|
||||||
typedef union
|
typedef union
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue