SelectClipPath function gdi32

int SelectClipPath(
  1. int hdc,
  2. int mode
)

The SelectClipPath function selects the current path as a clipping region for a device context, combining the new region with any existing clipping region using the specified mode.

BOOL SelectClipPath(
  HDC hdc,
  int mode
);

Implementation

int SelectClipPath(int hdc, int mode) => _SelectClipPath(hdc, mode);