// d3dkmddi.h
DXGKCB_NOTIFYCURSORSUPPORTCHANGE DxgkcbNotifycursorsupportchange;
NTSTATUS DxgkcbNotifycursorsupportchange(
[in] IN_CONST_PDXGKARGCB_NOTIFYCURSORSUPPORTCHANGE pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
A kernel-mode display miniport driver calls DXGKCB_NOTIFYCURSORSUPPORTCHANGE to notify the operating system that cursor support has been changed.
pArgs [in]Pointer to a DXGKARGCB_NOTIFYCURSORSUPPORTCHANGE structure that contains the arguments for this callback.
Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS error code.
The kernel-mode driver can call DXGKCB_NOTIFYCURSORSUPPORTCHANGE either inside a DDI call from the OS or in an arbitrary thread before the adapter is stopped/removed.
DXGKCB_XXX functions are implemented by Dxgkrnl. To use this callback function, set the members of DXGKARGCB_NOTIFYCURSORSUPPORTCHANGE and then call DxgkCbNotifyCursorSupportChange via the DXGKRNL_INTERFACE.
DXGKARGCB_NOTIFYCURSORSUPPORTCHANGE