CreateCompatibleDC function gdi32

int CreateCompatibleDC(
  1. int hdc
)

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

HDC CreateCompatibleDC(
  HDC hdc
);

Implementation

int CreateCompatibleDC(int hdc) => _CreateCompatibleDC(hdc);