GetWindowDC method

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

Implementation

ffi.Pointer<HDC__> GetWindowDC(
  ffi.Pointer<HWND__> hWnd,
) {
  return (_GetWindowDC ??= _dylib
      .lookupFunction<_c_GetWindowDC, _dart_GetWindowDC>('GetWindowDC'))(
    hWnd,
  );
}