// d3d10umddi.h
PFND3D10DDI_SETERROR_CB Pfnd3d10ddiSeterrorCb;
VOID Pfnd3d10ddiSeterrorCb(
D3D10DDI_HRTCORELAYER unnamedParam1,
HRESULT unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The pfnSetErrorCb function sets the return error code of a user-mode display driver's function.
unnamedParam1hRuntimeDevice [in]
A handle to a context for the core Microsoft Direct3D 10 runtime. This handle is supplied to the driver in a call to the driver's CreateDevice(D3D10) function.
unnamedParam2hResult [in]
An HRESULT value that specifies the error to set for a driver function.
A user-mode display driver can call pfnSetErrorCb many times for each driver invocation. For the driver's functions that do not return status codes, the driver uses pfnSetErrorCb to return error information to the Direct3D runtime.
D3D10DDI_CORELAYER_DEVICECALLBACKS