// d3dumddi.h
PFND3DDDI_DESTROYSYNCHRONIZATIONOBJECTCB Pfnd3dddiDestroysynchronizationobjectcb;
HRESULT Pfnd3dddiDestroysynchronizationobjectcb(
HANDLE hDevice,
const D3DDDICB_DESTROYSYNCHRONIZATIONOBJECT *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The pfnDestroySynchronizationObjectCb function destroys the synchronization object that was created through a call to the pfnCreateSynchronizationObjectCb function.
hDeviceA handle to a display device (that is, the graphics context).
unnamedParam2pData [in]
A pointer to a D3DDDICB_DESTROYSYNCHRONIZATIONOBJECT structure that contains a handle to the synchronization object to destroy.
pfnDestroySynchronizationObjectCb returns one of the following values:
| Return code | Description |
|---|---|
| S_OK | The synchronization object was successfully destroyed. |
| E_INVALIDARG | Parameters were validated and determined to be incorrect. |
This function might also return other HRESULT values.
D3DDDICB_DESTROYSYNCHRONIZATIONOBJECT
pfnCreateSynchronizationObjectCb