Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a05b43fd
Commit
a05b43fd
authored
Nov 21, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Nov 21, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SHFind_InitMenuPopup is supposed to return a pointer.
parent
ca6e3361
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
shlmenu.c
dlls/shell32/shlmenu.c
+9
-5
No files found.
dlls/shell32/shlmenu.c
View file @
a05b43fd
...
...
@@ -764,15 +764,19 @@ void WINAPI FileMenu_AbortInitMenu (void)
*
*
* PARAMETERS
* hMenu [in] hand
el
of menu previously created
* hMenu [in] hand
le
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 */
}
/*************************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment