DrawEscape function gdi32

int DrawEscape(
  1. int hdc,
  2. int iEscape,
  3. int cjIn,
  4. Pointer<Utf8> lpIn
)

The DrawEscape function provides drawing capabilities of the specified video display that are not directly available through the graphics device interface (GDI).

int DrawEscape(
  HDC    hdc,
  int    iEscape,
  int    cjIn,
  LPCSTR lpIn
);

Implementation

int DrawEscape(int hdc, int iEscape, int cjIn, Pointer<Utf8> lpIn) =>
    _DrawEscape(hdc, iEscape, cjIn, lpIn);