[SDK] Add CPUID_EXTENDED_STATE_SIZE_OFFSET_REGS

This commit is contained in:
Timo Kreuzer 2023-11-14 15:35:10 +01:00
parent 9ea129b8a9
commit 0e2788de4a

View file

@ -114,6 +114,20 @@ typedef union
};
} 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)
typedef union
{