Small updown cleanup.

This commit is contained in:
Dimitrie O. Paun 2002-09-04 18:45:42 +00:00 committed by Alexandre Julliard
parent d5d23cb9d5
commit cb1f1454ff
1 changed files with 2 additions and 7 deletions

View File

@ -951,9 +951,7 @@ static LRESULT WINAPI UpDownWindowProc(HWND hwnd, UINT message, WPARAM wParam,
*
* Registers the updown window class.
*/
VOID
UPDOWN_Register(void)
void UPDOWN_Register(void)
{
WNDCLASSW wndClass;
@ -975,10 +973,7 @@ UPDOWN_Register(void)
*
* Unregisters the updown window class.
*/
VOID
UPDOWN_Unregister (void)
void UPDOWN_Unregister (void)
{
UnregisterClassW (UPDOWN_CLASSW, (HINSTANCE)NULL);
}