// hdaudio.h
PHDAUDIO_TRANSFER_COMPLETE_CALLBACK PhdaudioTransferCompleteCallback;
VOID PhdaudioTransferCompleteCallback(
HDAUDIO_CODEC_TRANSFER *unnamedParam1,
PVOID unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
HDAudio codec transfer complete callback function. PHDAUDIO_TRANSFER_COMPLETE_CALLBACK is used by the PTRANSFER_CODEC_VERBS callback function.
unnamedParam1Context - This is the same context value that was specified previously in the PTRANSFER_CODEC_VERBS routine's callbackContext parameter.
unnamedParam2pHDAudioCodecTransfer - A pointer to the codecTransfer array element that contains the codec command and the response that triggered the callback.
For more information, see PTRANSFER_CODEC_VERBS.