Commit a05b43fd authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

SHFind_InitMenuPopup is supposed to return a pointer.

parent ca6e3361
......@@ -764,15 +764,19 @@ void WINAPI FileMenu_AbortInitMenu (void)
*
*
* PARAMETERS
* hMenu [in] handel of menu previously created
* hMenu [in] handle of menu previously created
* hWndParent [in] parent window
* w [in] no pointer
* x [in] no pointer
* w [in] no pointer (0x209 over here) perhaps menu IDs ???
* x [in] no pointer (0x226 over here)
*
* RETURNS
* LPXXXXX pointer to struct containing a func addr at offset 8
* or NULL at failure.
*/
HRESULT WINAPI SHFind_InitMenuPopup (HMENU hMenu, HWND hWndParent, DWORD w, DWORD x)
LPVOID WINAPI SHFind_InitMenuPopup (HMENU hMenu, HWND hWndParent, DWORD w, DWORD x)
{ FIXME("hmenu=0x%08x hwnd=0x%08x 0x%08lx 0x%08lx stub\n",
hMenu,hWndParent,w,x);
return TRUE;
return NULL; /* this is supposed to be a pointer */
}
/*************************************************************************
......
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