Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This function creates a memory device context (DC) compatible with the specified device.

Syntax

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 Value

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 CreateCompatibleBitmapto specify the height, width, and color organization required in the function call.

When a memory device context is created, all attributes are set to typical default values. The memory device context can be use as a typical device context. You can set the attributes to non-default values, obtain the current setting of its attributes, and select pens, brushes and regions into it.

The CreateCompatibleDCfunction can only be used with devices that support raster operations. An application can determine whether a device supports these operations by calling the GetDeviceCapsfunction.

When you no longer need the memory device context, call the DeleteDCfunction to delete it.

Requirements

Header windows.h
Library coredll.lib
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also