// d3dkmthk.h
PFND3DKMT_CREATEHWQUEUE Pfnd3dkmtCreatehwqueue;
NTSTATUS Pfnd3dkmtCreatehwqueue(
D3DKMT_CREATEHWQUEUE *unnamedParam1
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Implemented by the client driver to create a new hardware queue.
unnamedParam1Pointer to a D3DKMT_CREATEHWQUEUE structure that contains information needed to create a new hardware queue.
Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS Values error code.
//Declaration
PFND3DKMT_CREATEHWQUEUE Pfnd3dkmtCreatehwqueue;
// Definition
NTSTATUS Pfnd3dkmtCreatehwqueue
(
D3DKMT_CREATEHWQUEUE *
)
{...}
PFND3DKMT_CREATEHWQUEUE
Register your implementation of this callback function by setting the appropriate member of D3DKMT_CREATEHWQUEUE and then calling Pfnd3dkmtCreateHwQueue.