NtGdiDdDestroyMoComp function
[This function is subject to change with each operating system revision. Instead, use the Microsoft DirectDraw and Microsoft Direct3DAPIs; these APIs insulate applications from such operating system changes, and hide many other difficulties involved in interacting directly with display drivers.]
Notifies the driver that this motion compensation object will no longer be used. The driver now needs to perform any necessary cleanup.
Syntax
DWORD APIENTRY NtGdiDdDestroyMoComp(
_In_ HANDLE hMoComp,
_Inout_ PDD_DESTROYMOCOMPDATA puBeginFrameData
);
Parameters
-
hMoComp [in]
-
Handle to a DD_MOTIONCOMP_LOCAL structure that contains a description of the motion compensation object to be destroyed.
-
puBeginFrameData [in, out]
-
Pointer to a DD_DESTROYMOCOMPDATA structure that contains the information needed to finish motion compensation.
Return value
NtGdiDdDestroyMoComp returns one of the following callback codes.
Return code | Description |
---|---|
|
The driver has performed the operation and returned a valid return code for that operation. If this code is DD_OK, DirectDraw or Direct3D proceeds with the function. Otherwise, DirectDraw or Direct3D returns the error code provided by the driver and aborts the function. |
|
The driver has no comment on the requested operation. If the driver is required to have implemented a particular callback, DirectDraw or Direct3D reports an error condition. Otherwise, DirectDraw or Direct3D handles the operation as if the driver callback had not been defined by executing the DirectDraw or Direct3D device-independent implementation. |
Remarks
For more information, see the Microsoft DirectX Video Acceleration Driver Development Kit (DDK).
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
See also