Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
c15b0a25
Commit
c15b0a25
authored
Oct 10, 2002
by
Steve Lustbader
Committed by
Alexandre Julliard
Oct 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide a stub for GetComboBoxInfo.
parent
d241176f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
combo.c
controls/combo.c
+11
-0
user32.spec
dlls/user/user32.spec
+1
-0
winuser.h
include/winuser.h
+16
-0
No files found.
controls/combo.c
View file @
c15b0a25
...
...
@@ -2322,3 +2322,14 @@ static LRESULT WINAPI ComboWndProcW( HWND hwnd, UINT message, WPARAM wParam, LPA
if
(
!
IsWindow
(
hwnd
))
return
0
;
return
ComboWndProc_common
(
hwnd
,
message
,
wParam
,
lParam
,
TRUE
);
}
/*************************************************************************
* GetComboBoxInfo (USER32.@)
*/
BOOL
WINAPI
GetComboBoxInfo
(
HWND
hwndCombo
,
/* handle to combo box */
PCOMBOBOXINFO
pcbi
/* combo box information */
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
dlls/user/user32.spec
View file @
c15b0a25
...
...
@@ -228,6 +228,7 @@ init UserClientDllInitialize
@ stdcall GetClipboardFormatNameW(long ptr long) GetClipboardFormatNameW
@ stdcall GetClipboardOwner() GetClipboardOwner
@ stdcall GetClipboardViewer() GetClipboardViewer
@ stdcall GetComboBoxInfo(long ptr) GetComboBoxInfo
@ stdcall GetCursor() GetCursor
@ stdcall GetCursorInfo(ptr) GetCursorInfo
@ stdcall GetCursorPos(ptr) GetCursorPos
...
...
include/winuser.h
View file @
c15b0a25
...
...
@@ -1849,6 +1849,21 @@ typedef struct
RECT
rcExclude
;
}
TPMPARAMS
,
*
LPTPMPARAMS
;
/*
* Combobox information
*/
typedef
struct
tagCOMBOBOXINFO
{
DWORD
cbSize
;
RECT
rcItem
;
RECT
rcButton
;
DWORD
stateButton
;
HWND
hwndCombo
;
HWND
hwndItem
;
HWND
hwndList
;
}
COMBOBOXINFO
,
*
PCOMBOBOXINFO
,
*
LPCOMBOBOXINFO
;
/* FIXME: not sure this one is correct */
typedef
struct
{
UINT
cbSize
;
...
...
@@ -3714,6 +3729,7 @@ BOOL WINAPI ExitWindowsEx(UINT,DWORD);
BOOL
WINAPI
GetIconInfo
(
HICON
,
PICONINFO
);
HKL
WINAPI
GetKeyboardLayout
(
DWORD
);
INT
WINAPI
GetKeyboardLayoutList
(
INT
,
HKL
*
);
BOOL
WINAPI
GetComboBoxInfo
(
HWND
,
PCOMBOBOXINFO
);
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