// pep_x.h
PPO_ENUMERATE_INTERRUPT_SOURCE_CALLBACK PpoEnumerateInterruptSourceCallback;
BOOLEAN PpoEnumerateInterruptSourceCallback(
[in] PVOID CallbackContext,
[in] PPEP_UNMASKED_INTERRUPT_INFORMATION InterruptInformation
)
{...}
View the official Windows Driver Kit DDI reference// pepfx.h
PPO_ENUMERATE_INTERRUPT_SOURCE_CALLBACK PpoEnumerateInterruptSourceCallback;
BOOLEAN PpoEnumerateInterruptSourceCallback(
[in] PVOID CallbackContext,
[in] PPEP_UNMASKED_INTERRUPT_INFORMATION InterruptInformation
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
An EnumerateInterruptSource callback routine supplies a platform extension plug-in (PEP) with information about an interrupt source.
CallbackContext [in]A pointer to a callback context. The PEP specified this pointer value as a parameter in the EnumerateUnmaskedInterrupts call that initiated the enumeration of interrupt sources.
InterruptInformation [in]A pointer to a PEP_UNMASKED_INTERRUPT_INFORMATION structure that contains information about the interrupt source.
If the EnumerateInterruptSource callback routine returns TRUE, EnumerateUnmaskedInterrupts will continue to call the EnumerateInterruptSource callback routine while more interrupts are available to be enumerated. If the EnumerateInterruptSource callback routine returns FALSE, EnumerateUnmaskedInterrupts returns without enumerating any more interrupts.
PO_ENUMERATE_INTERRUPT_SOURCE_CALLBACK EnumerateInterruptSource;
BOOLEAN EnumerateInterruptSource(
_In_ PVOID CallbackContext,
_In_ PPEP_UNMASKED_INTERRUPT_INFORMATION InterruptInformation
)
{ ... }
This callback routine is implemented by a PEP, and is called by the Windows power management framework (PoFx). The Callback parameter of the EnumerateUnmaskedInterrupts routine is a pointer to an EnumerateInterruptSource callback routine.
After a PEP calls EnumerateUnmaskedInterrupts to enumerate the unmasked interrupt sources, PoFx calls the PEP's EnumerateInterruptSource callback routine once for each unmasked interrupt source. EnumerateUnmaskedInterrupts returns only after the last call to the EnumerateInterruptSource callback routine completes.
An EnumerateInterruptSource callback routine is called at the same IRQL as the PEP's call to EnumerateUnmaskedInterrupts that initiates the enumeration callbacks.
PEP_UNMASKED_INTERRUPT_INFORMATION
An EnumerateInterruptSource callback routine supplies a platform extension plug-in (PEP) with information about an interrupt source.
CallbackContext [in]A pointer to a callback context. The PEP specified this pointer value as a parameter in the EnumerateUnmaskedInterrupts call that initiated the enumeration of interrupt sources.
InterruptInformation [in]A pointer to a PEP_UNMASKED_INTERRUPT_INFORMATION structure that contains information about the interrupt source.
If the EnumerateInterruptSource callback routine returns TRUE, EnumerateUnmaskedInterrupts will continue to call the EnumerateInterruptSource callback routine while more interrupts are available to be enumerated. If the EnumerateInterruptSource callback routine returns FALSE, EnumerateUnmaskedInterrupts returns without enumerating any more interrupts.
PO_ENUMERATE_INTERRUPT_SOURCE_CALLBACK EnumerateInterruptSource;
BOOLEAN EnumerateInterruptSource(
_In_ PVOID CallbackContext,
_In_ PPEP_UNMASKED_INTERRUPT_INFORMATION InterruptInformation
)
{ ... }
This callback routine is implemented by a PEP, and is called by the Windows power management framework (PoFx). The Callback parameter of the EnumerateUnmaskedInterrupts routine is a pointer to an EnumerateInterruptSource callback routine.
After a PEP calls EnumerateUnmaskedInterrupts to enumerate the unmasked interrupt sources, PoFx calls the PEP's EnumerateInterruptSource callback routine once for each unmasked interrupt source. EnumerateUnmaskedInterrupts returns only after the last call to the EnumerateInterruptSource callback routine completes.
An EnumerateInterruptSource callback routine is called at the same IRQL as the PEP's call to EnumerateUnmaskedInterrupts that initiates the enumeration callbacks.
PEP_UNMASKED_INTERRUPT_INFORMATION