// hdaudio.h
PHDAUDIO_DMA_NOTIFICATION_CALLBACK PhdaudioDmaNotificationCallback;
VOID PhdaudioDmaNotificationCallback(
PVOID unnamedParam1,
LARGE_INTEGER unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
HDAudio codec DMA Notification Callback function.
PHDAUDIO_DMA_NOTIFICATION_CALLBACK is used by the PREGISTER_NOTIFICATION_CALLBACK callback function.
unnamedParam1Context - Driver-specific context value used when registering the callback routine.
unnamedParam2QPCDMANotificationTimestamp - The QPC time when the IOC ISR handled the DMA interrupt.
//Declaration
PHDAUDIO_DMA_NOTIFICATION_CALLBACK PHdAudioDmaNotificationCallback;
// Definition
VOID PHdAudioDmaNotificationCallback
(
PVOID Context
LARGE_INTEGER QPCDMANotificationTimestamp
)
{...}