From b2d4640d010395347018b27d9dbf85832baa0593 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Sun, 8 Jan 2012 23:23:05 +0100 Subject: user32: Add GetListBoxInfo --- dlls/user32/listbox.c | 7 +++++++ dlls/user32/user32.spec | 2 +- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/dlls/user32/listbox.c b/dlls/user32/listbox.c index 6bf24a7..a808643 100644 --- a/dlls/user32/listbox.c +++ b/dlls/user32/listbox.c @@ -3149,3 +3149,10 @@ 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..a964dc4 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(ptr) @ stdcall GetMenu(long) @ stdcall GetMenuBarInfo(long long long ptr) @ stdcall GetMenuCheckMarkDimensions() -- 1.7.5.4