EndPath function Null safety gdi32
- int hdc
The EndPath function closes a path bracket and selects the path defined by the bracket into the specified device context.
BOOL EndPath(
HDC hdc
);
Implementation
int EndPath(int hdc) {
final _EndPath =
_gdi32.lookupFunction<Int32 Function(IntPtr hdc), int Function(int hdc)>(
'EndPath');
return _EndPath(hdc);
}