DirectDrawCreate (Compact 2013)
3/26/2014
This function creates an instance of a DirectDraw object.
Syntax
HRESULT WINAPI DirectDrawCreate(
GUID FAR* lpGUID,
LPDIRECTDRAW FAR* lplpDD,
IUnknown FAR* pUnkOuter
);
Parameters
lpGUID
[in] Address of the globally unique identifier (GUID) that represents the driver to be created.This can be NULL to indicate the active display driver.
- lplpDD
[out] Address of a variable that will be set to a valid IDirectDraw interface pointer if the call succeeds.
- pUnkOuter
[in] This method returns an error if this parameter is anything but NULL.
Return Value
If the function succeeds, the return value is DD_OK.
If the function fails, the return value may be one of the following error values:
DDERR_DIRECTDRAWALREADYCREATED |
DDERR_GENERIC |
DDERR_INVALIDPARAMS |
DDERR_OUTOFMEMORY |
For more information on these error codes see DirectDraw Return Values.
Remarks
This function attempts to initialize a DirectDraw object, and if the call is successful it then sets a pointer to the object.
On systems with multiple monitors, specifying NULL for lpGUID causes the DirectDraw object to run in emulation mode when the normal cooperative level is set. To make use of hardware acceleration on these systems, you must specify the device's GUID.
DirectDraw on Windows Embedded Compact only enumerates the GUID for the primary display adapter. It is not possible to use DirectDrawCreate on a nonprimary adapter in a multiple monitor system.
Requirements
Header |
ddraw.h |
Library |
ddraw.lib |