Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
a05b43fd
Commit
a05b43fd
authored
25 years ago
by
Andreas Mohr
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
SHFind_InitMenuPopup is supposed to return a pointer.
parent
ca6e3361
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/shell32/shlmenu.c
+9
-5
9 additions, 5 deletions
dlls/shell32/shlmenu.c
with
9 additions
and
5 deletions
dlls/shell32/shlmenu.c
+
9
−
5
View file @
a05b43fd
...
...
@@ -764,15 +764,19 @@ void WINAPI FileMenu_AbortInitMenu (void)
*
*
* PARAMETERS
* hMenu [in] hand
e
l of menu previously created
* hMenu [in] handl
e
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 */
}
/*************************************************************************
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment