// hdaudio.h
PHDAUDIO_UNSOLICITED_RESPONSE_CALLBACK PhdaudioUnsolicitedResponseCallback;
VOID PhdaudioUnsolicitedResponseCallback(
HDAUDIO_CODEC_RESPONSE unnamedParam1,
PVOID unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
HDAudio codec unsolicited response callback function. PHDAUDIO_UNSOLICITED_RESPONSE_CALLBACK is used by the PREGISTER_EVENT_CALLBACK callback function.
unnamedParam1Context - This is the callbackContext value that was passed previously to PREGISTER_EVENT_CALLBACK.
unnamedParam2HDAudioCodecResponse - This is a structure of type HDAUDIO_CODEC_RESPONSE that specifies the codec's response to the command. This structure is passed by value.
The HD Audio bus driver calls the callback routine at PASSIVE_LEVEL.