DrawEscape function Null safety gdi32
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<Uint8> lpIn) {
final _DrawEscape = _gdi32.lookupFunction<
Int32 Function(
IntPtr hdc, Int32 iEscape, Int32 cjIn, Pointer<Uint8> lpIn),
int Function(
int hdc, int iEscape, int cjIn, Pointer<Uint8> lpIn)>('DrawEscape');
return _DrawEscape(hdc, iEscape, cjIn, lpIn);
}