#ifndef _NTWMI_H
//
// Store the IRQ assigned to devices
//
typedef struct _WMI_IRQ_RECORD
{
// Bit 0 indicates CPU0, Bit 1 indicates CPU1, and so on
ULONG64 IRQAffinity;
USHORT IRQGroup;
USHORT Reserved;
ULONG IRQNum;
ULONG DeviceDescriptionLen;
WCHAR DeviceDescription[1];
} WMI_IRQ_RECORD, *PWMI_IRQ_RECORD;
View code on GitHub
No description available.