DXGKDDI_RESUMECONTEXT - NtDoc

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

DXGKDDI_RESUMECONTEXT DxgkddiResumecontext;

NTSTATUS DxgkddiResumecontext(
  IN_CONST_HANDLE hAdapter,
  IN_CONST_PDXGKARG_RESUMECONTEXT pResumeContext
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

DXGKDDI_RESUMECONTEXT callback function

Description

DxgkddiResumeContext resumes a context. A context is created in a resumed state by default.

Parameters

hAdapter

[in] The hardware context to be resumed.

pResumeContext

[in] Pointer a DXGKARG_RESUMECONTEXT structure that contains information to resume the content.

Return value

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

Remarks

Register your implementation of this callback function by setting it in DRIVER_INITIALIZATION_DATA.

See also

DxgkddiSuspendContext