GetWindow method

Pointer<HWND__> GetWindow(
  1. Pointer<HWND__> hWnd,
  2. int uCmd
)

Implementation

ffi.Pointer<HWND__> GetWindow(
  ffi.Pointer<HWND__> hWnd,
  int uCmd,
) {
  return (_GetWindow ??=
      _dylib.lookupFunction<_c_GetWindow, _dart_GetWindow>('GetWindow'))(
    hWnd,
    uCmd,
  );
}