Commit 0c62bf06 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Added MenuItemFromPoint stub.

parent 200f8921
......@@ -4737,3 +4737,13 @@ DWORD WINAPI GetMenuContextHelpId( HMENU hMenu )
}
return 0;
}
/**********************************************************************
* MenuItemFromPoint (USER32.387)
*/
UINT WINAPI MenuItemFromPoint(HWND hWnd, HMENU hMenu, POINT ptScreen)
{
FIXME("(0x%04x,0x%04x,(%ld,%ld)):stub\n",
hWnd, hMenu, ptScreen.x, ptScreen.y);
return 0;
}
......@@ -388,7 +388,7 @@ init MAIN_UserInit
384 stdcall MapVirtualKeyExA(long long long) MapVirtualKeyEx32A
385 stdcall MapVirtualKeyW(long long) MapVirtualKeyA
386 stdcall MapWindowPoints(long long ptr long) MapWindowPoints
387 stub MenuItemFromPoint
387 stdcall MenuItemFromPoint() MenuItemFromPoint
388 stub MenuWindowProcA
389 stub MenuWindowProcW
390 stdcall MessageBeep(long) MessageBeep
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment