// d3d12umddi.h
PFND3D12DDI_FILLDDITTABLE Pfnd3d12ddiFillddittable;
HRESULT Pfnd3d12ddiFillddittable(
[in] D3D12DDI_HADAPTER unnamedParam1,
[in] D3D12DDI_TABLE_TYPE unnamedParam2,
[in/out] VOID *unnamedParam3,
[in] SIZE_T unnamedParam4,
[in] UINT unnamedParam5,
[in, optional] D3D12DDI_HRTTABLE unnamedParam6
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The PFND3D12DDI_FILLDDITTABLE callback function retrieves a list of function pointers implemented by the user-mode driver.
unnamedParam1 [in]hAdapter is the handle to the graphics adapter object.
unnamedParam2 [in]tableType is a D3D12DDI_TABLE_TYPE value that indicates the type of function pointers to retrieve.
unnamedParam3 [in/out]pTable is a pointer to the returned table of callback functions that define the queried implementation.
unnamedParam4 [in]tableSize is the size of the table pointed to by pTable, in bytes.
unnamedParam5 [in]tableNum is the table index.
unnamedParam6 [in, optional]hHandle is a D3D12DDI_HRTTABLE handle.
Returns an HRESULT value.