// pep_x.h
VOID PEP_ACPI_INITIALIZE_INTERRUPT_RESOURCE(
[in] BOOLEAN ResourceUsage,
[in] KINTERRUPT_MODE EdgeLevel,
[in] KINTERRUPT_POLARITY InterruptLevel,
[in] BOOLEAN ShareType,
[in] BOOLEAN Wake,
[in] PULONG PinTable,
[in] UCHAR PinCount,
[out] PPEP_ACPI_RESOURCE Resource
);
View the official Windows Driver Kit DDI reference// pepfx.h
VOID PEP_ACPI_INITIALIZE_INTERRUPT_RESOURCE(
[in] BOOLEAN ResourceUsage,
[in] KINTERRUPT_MODE EdgeLevel,
[in] KINTERRUPT_POLARITY InterruptLevel,
[in] BOOLEAN ShareType,
[in] BOOLEAN Wake,
[in] PULONG PinTable,
[in] UCHAR PinCount,
[out] PPEP_ACPI_RESOURCE Resource
);
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_ACPI_INITIALIZE_INTERRUPT_RESOURCE function initializes a platform extension plug-in's (PEP) PEP_ACPI_INTERRUPT_RESOURCE structure.
ResourceUsage [in]Indicates if this device is in use.
EdgeLevel [in]A KINTERRUPT_MODE enumeration value that identifies the interrupt type.
InterruptLevel [in]A KINTERRUPT_POLARITY enumeration value that identifies how a device signals an interrupt request on an interrupt line.
ShareType [in]Indicates if the device can be shared.
Wake [in]Indicates if the device can be woken from a low-power state.
PinTable [in]A list of pin numbers on the resource.
PinCount [in]The number of pins described by the PinTable parameter.
Resource [out]A pointer to the resource. The structure behind the pointer is of type PEP_ACPI_INTERRUPT_RESOURCE.
The PEP_ACPI_INITIALIZE_INTERRUPT_RESOURCE function initializes a platform extension plug-in's (PEP) PEP_ACPI_INTERRUPT_RESOURCE structure.
ResourceUsage [in]Indicates if this device is in use.
EdgeLevel [in]A KINTERRUPT_MODE enumeration value that identifies the interrupt type.
InterruptLevel [in]A KINTERRUPT_POLARITY enumeration value that identifies how a device signals an interrupt request on an interrupt line.
ShareType [in]Indicates if the device can be shared.
Wake [in]Indicates if the device can be woken from a low-power state.
PinTable [in]A list of pin numbers on the resource.
PinCount [in]The number of pins described by the PinTable parameter.
Resource [out]A pointer to the resource. The structure behind the pointer is of type PEP_ACPI_INTERRUPT_RESOURCE.