PFND3DKMT_CREATEHWQUEUE - NtDoc

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

PFND3DKMT_CREATEHWQUEUE Pfnd3dkmtCreatehwqueue;

NTSTATUS Pfnd3dkmtCreatehwqueue(
  D3DKMT_CREATEHWQUEUE *unnamedParam1
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dkmthk-pfnd3dkmt_createhwqueue)

PFND3DKMT_CREATEHWQUEUE callback function

Description

Implemented by the client driver to create a new hardware queue.

Parameters

unnamedParam1

Pointer to a D3DKMT_CREATEHWQUEUE structure that contains information needed to create a new hardware queue.

Return value

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

Prototype

//Declaration

PFND3DKMT_CREATEHWQUEUE Pfnd3dkmtCreatehwqueue;

// Definition

NTSTATUS Pfnd3dkmtCreatehwqueue
(
    D3DKMT_CREATEHWQUEUE *
)
{...}

PFND3DKMT_CREATEHWQUEUE

Remarks

Register your implementation of this callback function by setting the appropriate member of D3DKMT_CREATEHWQUEUE and then calling Pfnd3dkmtCreateHwQueue.