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 */
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);

View File

@ -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);
}