Added MenuItemFromPoint stub.
This commit is contained in:
parent
200f8921b1
commit
0c62bf064d
@ -4737,3 +4737,13 @@ DWORD WINAPI GetMenuContextHelpId( HMENU hMenu )
|
|||||||
}
|
}
|
||||||
return 0;
|
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
|
384 stdcall MapVirtualKeyExA(long long long) MapVirtualKeyEx32A
|
||||||
385 stdcall MapVirtualKeyW(long long) MapVirtualKeyA
|
385 stdcall MapVirtualKeyW(long long) MapVirtualKeyA
|
||||||
386 stdcall MapWindowPoints(long long ptr long) MapWindowPoints
|
386 stdcall MapWindowPoints(long long ptr long) MapWindowPoints
|
||||||
387 stub MenuItemFromPoint
|
387 stdcall MenuItemFromPoint() MenuItemFromPoint
|
||||||
388 stub MenuWindowProcA
|
388 stub MenuWindowProcA
|
||||||
389 stub MenuWindowProcW
|
389 stub MenuWindowProcW
|
||||||
390 stdcall MessageBeep(long) MessageBeep
|
390 stdcall MessageBeep(long) MessageBeep
|
||||||
|
Loading…
x
Reference in New Issue
Block a user