GetMenu method

Pointer<HMENU__> GetMenu(
  1. Pointer<HWND__> hWnd
)

Implementation

ffi.Pointer<HMENU__> GetMenu(
  ffi.Pointer<HWND__> hWnd,
) {
  return (_GetMenu ??=
      _dylib.lookupFunction<_c_GetMenu, _dart_GetMenu>('GetMenu'))(
    hWnd,
  );
}