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
4f27582c
Commit
4f27582c
authored
Jun 20, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for GetMenuBarInfo.
parent
9cb94b27
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
menu.c
dlls/user/menu.c
+8
-0
user32.spec
dlls/user/user32.spec
+1
-1
winuser.h
include/winuser.h
+10
-0
No files found.
dlls/user/menu.c
View file @
4f27582c
...
...
@@ -3758,6 +3758,14 @@ HMENU WINAPI GetMenu( HWND hWnd )
return
retvalue
;
}
/**********************************************************************
* GetMenuBarInfo (USER32.@)
*/
BOOL
WINAPI
GetMenuBarInfo
(
HWND
hwnd
,
LONG
idObject
,
LONG
idItem
,
PMENUBARINFO
pmbi
)
{
FIXME
(
"(%p,0x%08lx,0x%08lx,%p)
\n
"
,
hwnd
,
idObject
,
idItem
,
pmbi
);
return
FALSE
;
}
/**********************************************************************
* MENU_SetMenu
...
...
dlls/user/user32.spec
View file @
4f27582c
...
...
@@ -266,7 +266,7 @@
@ stdcall GetLastInputInfo(ptr)
# @ stub GetListBoxInfo
@ stdcall GetMenu(long)
# @ stub GetMenuBarInfo
@ stdcall GetMenuBarInfo(long long long ptr)
@ stdcall GetMenuCheckMarkDimensions()
@ stdcall GetMenuContextHelpId(long)
@ stdcall GetMenuDefaultItem(long long long)
...
...
include/winuser.h
View file @
4f27582c
...
...
@@ -1977,6 +1977,15 @@ typedef const MENUITEMINFOA *LPCMENUITEMINFOA;
typedef
const
MENUITEMINFOW
*
LPCMENUITEMINFOW
;
DECL_WINELIB_TYPE_AW
(
LPCMENUITEMINFO
)
typedef
struct
tagMENUBARINFO
{
DWORD
cbSize
;
RECT
rcBar
;
HMENU
hMenu
;
HWND
hwndMenu
;
BOOL
fBarFocused
:
1
;
BOOL
fFocused
:
1
;
}
MENUBARINFO
,
*
PMENUBARINFO
,
*
LPMENUBARINFO
;
typedef
struct
tagMENUINFO
{
DWORD
cbSize
;
DWORD
fMask
;
...
...
@@ -3934,6 +3943,7 @@ BOOL WINAPI GetIconInfo(HICON,PICONINFO);
HKL
WINAPI
GetKeyboardLayout
(
DWORD
);
UINT
WINAPI
GetKeyboardLayoutList
(
INT
,
HKL
*
);
BOOL
WINAPI
GetComboBoxInfo
(
HWND
,
PCOMBOBOXINFO
);
BOOL
WINAPI
GetMenuBarInfo
(
HWND
,
LONG
,
LONG
,
PMENUBARINFO
);
DWORD
WINAPI
GetMenuContextHelpId
(
HMENU
);
UINT
WINAPI
GetMenuDefaultItem
(
HMENU
,
UINT
,
UINT
);
BOOL
WINAPI
GetMenuInfo
(
HMENU
,
LPMENUINFO
);
...
...
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