From e30e3a458c2466a159a4ddafa5d02f9b976a5177 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Mon, 9 Jan 2012 09:23:25 +0100 Subject: user32: Add GetListBoxInfo --- dlls/user32/listbox.c | 6 ++++++ dlls/user32/user32.spec | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/dlls/user32/listbox.c b/dlls/user32/listbox.c index 6bf24a7..bb34d90 100644 --- a/dlls/user32/listbox.c +++ b/dlls/user32/listbox.c @@ -3149,3 +3149,9 @@ LRESULT ListBoxWndProc_common( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam return unicode ? DefWindowProcW( hwnd, msg, wParam, lParam ) : DefWindowProcA( hwnd, msg, wParam, lParam ); } + +DWORD WINAPI GetListBoxInfo( HWND hwnd ) +{ + TRACE( "(%p)\n", hwnd ); + return SendMessageW( hwnd, LB_GETLISTBOXINFO, 0, 0 ); +} diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index d5c123c..a3feb68 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -308,7 +308,7 @@ @ stdcall GetLastActivePopup(long) @ stdcall GetLastInputInfo(ptr) @ stdcall GetLayeredWindowAttributes(long ptr ptr ptr) -# @ stub GetListBoxInfo +@ stdcall GetListBoxInfo(long) @ stdcall GetMenu(long) @ stdcall GetMenuBarInfo(long long long ptr) @ stdcall GetMenuCheckMarkDimensions() -- 1.7.5.4