MenuItemFromPoint method

int MenuItemFromPoint(
  1. Pointer<HWND__> hWnd,
  2. Pointer<HMENU__> hMenu,
  3. POINT ptScreen
)

Implementation

int MenuItemFromPoint(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<HMENU__> hMenu,
  POINT ptScreen,
) {
  return _MenuItemFromPoint(
    hWnd,
    hMenu,
    ptScreen,
  );
}