// pep_x.h
typedef struct _PEP_ACPI_INTERRUPT_RESOURCE {
PEP_ACPI_RESOURCE_TYPE Type;
KINTERRUPT_MODE InterruptType;
KINTERRUPT_POLARITY InterruptPolarity;
PEP_ACPI_RESOURCE_FLAGS Flags;
UCHAR Count;
PULONG Pins;
} PEP_ACPI_INTERRUPT_RESOURCE, *PPEP_ACPI_INTERRUPT_RESOURCE;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef struct _PEP_ACPI_INTERRUPT_RESOURCE {
PEP_ACPI_RESOURCE_TYPE Type;
KINTERRUPT_MODE InterruptType;
KINTERRUPT_POLARITY InterruptPolarity;
PEP_ACPI_RESOURCE_FLAGS Flags;
UCHAR Count;
PULONG Pins;
} PEP_ACPI_INTERRUPT_RESOURCE, *PPEP_ACPI_INTERRUPT_RESOURCE;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_ACPI_INTERRUPT_RESOURCE structure describes an ACPI interrupt resource.
TypeA PEP_ACPI_RESOURCE_TYPE enumeration value describing this resource.
InterruptTypeA KINTERRUPT_MODE enumeration value that identifies the interrupt type.
InterruptPolarityA KINTERRUPT_POLARITY enumeration value that identifies how a device signals an interrupt request on an interrupt line.
FlagsA PEP_ACPI_RESOURCE_FLAGS structure that describes the capabilities of this ACPI resource.
CountThe count of items in the Pins array.
PinsA list of pin numbers on the resource that are described by this descriptor.
The PEP_ACPI_INTERRUPT_RESOURCE structure describes an ACPI interrupt resource.
TypeA PEP_ACPI_RESOURCE_TYPE enumeration value describing this resource.
InterruptTypeA KINTERRUPT_MODE enumeration value that identifies the interrupt type.
InterruptPolarityA KINTERRUPT_POLARITY enumeration value that identifies how a device signals an interrupt request on an interrupt line.
FlagsA PEP_ACPI_RESOURCE_FLAGS structure that describes the capabilities of this ACPI resource.
CountThe count of items in the Pins array.
PinsA list of pin numbers on the resource that are described by this descriptor.