GetDC method

Pointer<HDC__> GetDC(
  1. Pointer<HWND__> hWnd
)

Implementation

ffi.Pointer<HDC__> GetDC(
  ffi.Pointer<HWND__> hWnd,
) {
  return (_GetDC ??= _dylib.lookupFunction<_c_GetDC, _dart_GetDC>('GetDC'))(
    hWnd,
  );
}