SHFind_InitMenuPopup is supposed to return a pointer.

This commit is contained in:
Andreas Mohr 1999-11-21 00:48:33 +00:00 committed by Alexandre Julliard
parent ca6e3361d0
commit a05b43fdf3
1 changed files with 9 additions and 5 deletions

View File

@ -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 */
}
/*************************************************************************