CancelDC function gdi32

int CancelDC(
  1. int hdc
)

The CancelDC function cancels any pending operation on the specified device context (DC).

BOOL CancelDC(
  HDC hdc
);

Implementation

int CancelDC(int hdc) => _CancelDC(hdc);