DXGKCB_NOTIFYCURSORSUPPORTCHANGE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmddi.h

DXGKCB_NOTIFYCURSORSUPPORTCHANGE DxgkcbNotifycursorsupportchange;

NTSTATUS DxgkcbNotifycursorsupportchange(
  [in] IN_CONST_PDXGKARGCB_NOTIFYCURSORSUPPORTCHANGE pArgs
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dkmddi-dxgkcb_notifycursorsupportchange)

Description

A kernel-mode display miniport driver calls DXGKCB_NOTIFYCURSORSUPPORTCHANGE to notify the operating system that cursor support has been changed.

Parameters

pArgs [in]

Pointer to a DXGKARGCB_NOTIFYCURSORSUPPORTCHANGE structure that contains the arguments for this callback.

Return value

Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS error code.

Remarks

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.

See also

DXGKARGCB_NOTIFYCURSORSUPPORTCHANGE

DXGKRNL_INTERFACE