CreateCompatibleDC
This function creates a memory device context (DC) compatible with the specified device.
HDC CreateCompatibleDC(
HDC hdc
);
Parameters
- hdc
[in] Handle to an existing device context. If this handle is NULL, the function creates a memory device context compatible with the application's current screen.
Return Values
The handle to a memory device context indicates success. NULL indicates failure. To get extended error information, call GetLastError.
Remarks
A memory device context is a device context that exists only in memory. When the memory device context is created, its display surface is exactly one monochrome pixel wide and one monochrome pixel high. Before an application can use a memory device context for drawing operations, it must select a bitmap of the correct width and height into the device context. This may be done by using CreateCompatibleBitmap specifying the height, width, and color organization required in the function call.
When a memory device context is created, all attributes are set to normal default values. The memory device context can be use as a normal device context. You can set the attributes to non-default values, obtain the current setting of its attributes, select pens, brushes and regions into it.
The CreateCompatibleDC function can only be used with devices that support raster operations. An application can determine whether a device supports these operations by calling the GetDeviceCaps function.
When you no longer need the memory device context, call the DeleteDC function to delete it.
Requirements
| Runs on | Versions | Defined in | Include | Link to |
|---|---|---|---|---|
| Windows CE OS | 1.0 and later | Wingdi.h | Mgbase.lib |
Note This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.
See Also
CreateCompatibleBitmap, DeleteDC, GetDeviceCaps, GetLastError
Last updated on Tuesday, July 13, 2004
© 1992-2000 Microsoft Corporation. All rights reserved.