// d3dkmddi.h
DXGKDDI_RESUMECONTEXT DxgkddiResumecontext;
NTSTATUS DxgkddiResumecontext(
IN_CONST_HANDLE hAdapter,
IN_CONST_PDXGKARG_RESUMECONTEXT pResumeContext
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
DxgkddiResumeContext resumes a context. A context is created in a resumed state by default.
hAdapter[in] The hardware context to be resumed.
pResumeContext[in] Pointer a DXGKARG_RESUMECONTEXT structure that contains information to resume the content.
DxgkddiResumeContext returns STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS error code.
Register your implementation of this callback function by setting it in DRIVER_INITIALIZATION_DATA.