Minor cleanups.
This commit is contained in:
parent
5873eb501e
commit
bc88300968
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue