From bc883009687c9e1b0b8f0d792caaf294538e4f26 Mon Sep 17 00:00:00 2001 From: "Dimitrie O. Paun" Date: Wed, 27 Oct 2004 21:16:03 +0000 Subject: [PATCH] Minor cleanups. --- dlls/comctl32/comboex.c | 8 +++----- dlls/comctl32/progress.c | 6 +++--- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/dlls/comctl32/comboex.c b/dlls/comctl32/comboex.c index 7d8d5ecc98a..e447df58b57 100644 --- a/dlls/comctl32/comboex.c +++ b/dlls/comctl32/comboex.c @@ -47,7 +47,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(comboex); /* Item structure */ typedef struct { - VOID *next; + void *next; UINT mask; LPWSTR pszText; LPWSTR pszTemp; @@ -126,10 +126,8 @@ typedef struct /* Things common to the entire DLL */ -static LRESULT WINAPI -COMBOEX_EditWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); -static LRESULT WINAPI -COMBOEX_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); +static LRESULT WINAPI COMBOEX_EditWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); +static LRESULT WINAPI COMBOEX_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); static LRESULT COMBOEX_Destroy (COMBOEX_INFO *infoPtr); typedef INT (WINAPI *cmp_func_t)(LPCWSTR, LPCWSTR); diff --git a/dlls/comctl32/progress.c b/dlls/comctl32/progress.c index bd19b48dcc3..72cc2516a4f 100644 --- a/dlls/comctl32/progress.c +++ b/dlls/comctl32/progress.c @@ -493,7 +493,7 @@ static DWORD PROGRESS_SetRange (PROGRESS_INFO *infoPtr, int low, int high) * ProgressWindowProc */ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message, - WPARAM wParam, LPARAM lParam) + WPARAM wParam, LPARAM lParam) { PROGRESS_INFO *infoPtr; @@ -654,7 +654,7 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message, * * Registers the progress bar window class. */ -VOID PROGRESS_Register (void) +void PROGRESS_Register (void) { WNDCLASSW wndClass; @@ -675,7 +675,7 @@ VOID PROGRESS_Register (void) * * Unregisters the progress bar window class. */ -VOID PROGRESS_Unregister (void) +void PROGRESS_Unregister (void) { UnregisterClassW (PROGRESS_CLASSW, NULL); }