// d3dkmddi.h
DXGKCB_SIGNALEVENT DxgkcbSignalevent;
NTSTATUS DxgkcbSignalevent(
IN_CONST_PDXGKARGCB_SIGNALEVENT unnamedParam1
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
A kernel-mode display driver (KMD) calls DxgkCbSignalEvent to signal an event.
unnamedParam1[in] Pointer to a DXGKARGCB_SIGNALEVENT structure that contains arguments for this call.
DxgkCbSignalEvent returns STATUS_SUCCESS if it succeeds. Otherwise, it returns one of the error codes defined in Ntstatus.h.
The driver must call DxgkCbSignalEvent with the LastUse flag during process or device cleanup.
During paravirtualization, KMD on the host can call DxgkCbSignalEvent to signal an event created on the guest. DxgkCbSignalEvent can also be used to signal events of the host processes as well.
In the case of paravirtualization, DxgkCbSignalEvent doesn't signal the event synchronously, so the event isn't signaled when the callback returns. Otherwise, the event is signaled synchronously.
The IRQL for DxgkCbSignalEvent is:
DXGKCB_XXX functions are implemented by Dxgkrnl. To use this callback function, set the members of DXGKARGCB_SIGNALEVENT and then call DxgkCbSignalEvent via the DXGKRNL_INTERFACE.