Minor cleanups.

This commit is contained in:
Dimitrie O. Paun 2004-10-27 21:16:03 +00:00 committed by Alexandre Julliard
parent 5873eb501e
commit bc88300968
2 changed files with 6 additions and 8 deletions

View File

@ -47,7 +47,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(comboex);
/* Item structure */ /* Item structure */
typedef struct typedef struct
{ {
VOID *next; void *next;
UINT mask; UINT mask;
LPWSTR pszText; LPWSTR pszText;
LPWSTR pszTemp; LPWSTR pszTemp;
@ -126,10 +126,8 @@ typedef struct
/* Things common to the entire DLL */ /* Things common to the entire DLL */
static LRESULT WINAPI static LRESULT WINAPI COMBOEX_EditWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
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_ComboWndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
static LRESULT COMBOEX_Destroy (COMBOEX_INFO *infoPtr); static LRESULT COMBOEX_Destroy (COMBOEX_INFO *infoPtr);
typedef INT (WINAPI *cmp_func_t)(LPCWSTR, LPCWSTR); typedef INT (WINAPI *cmp_func_t)(LPCWSTR, LPCWSTR);

View File

@ -493,7 +493,7 @@ static DWORD PROGRESS_SetRange (PROGRESS_INFO *infoPtr, int low, int high)
* ProgressWindowProc * ProgressWindowProc
*/ */
static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message, static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
WPARAM wParam, LPARAM lParam) WPARAM wParam, LPARAM lParam)
{ {
PROGRESS_INFO *infoPtr; PROGRESS_INFO *infoPtr;
@ -654,7 +654,7 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
* *
* Registers the progress bar window class. * Registers the progress bar window class.
*/ */
VOID PROGRESS_Register (void) void PROGRESS_Register (void)
{ {
WNDCLASSW wndClass; WNDCLASSW wndClass;
@ -675,7 +675,7 @@ VOID PROGRESS_Register (void)
* *
* Unregisters the progress bar window class. * Unregisters the progress bar window class.
*/ */
VOID PROGRESS_Unregister (void) void PROGRESS_Unregister (void)
{ {
UnregisterClassW (PROGRESS_CLASSW, NULL); UnregisterClassW (PROGRESS_CLASSW, NULL);
} }