Francois Gouget : comctl32: Make COMBO_WindowProc() static.
Module: wine Branch: master Commit: 09ec2cd7716218bfee51892541056023344c24b7 URL: https://source.winehq.org/git/wine.git/?a=commit;h=09ec2cd7716218bfee5189254... Author: Francois Gouget <fgouget(a)free.fr> Date: Thu Feb 22 15:14:48 2018 +0100 comctl32: Make COMBO_WindowProc() static. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/comctl32/combo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/combo.c b/dlls/comctl32/combo.c index 7401a7e..712e272 100644 --- a/dlls/comctl32/combo.c +++ b/dlls/comctl32/combo.c @@ -1714,7 +1714,7 @@ static LRESULT COMBO_GetComboBoxInfo(const HEADCOMBO *lphc, COMBOBOXINFO *pcbi) return TRUE; } -LRESULT CALLBACK COMBO_WindowProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam ) +static LRESULT CALLBACK COMBO_WindowProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam ) { HEADCOMBO *lphc = (HEADCOMBO *)GetWindowLongPtrW( hwnd, 0 ); HTHEME theme;
participants (1)
-
Alexandre Julliard