mirror of https://github.com/skeeto/pixelcity.git
Fix incorrect ScreenSaverProc() definition.
This commit is contained in:
parent
ff3afd3284
commit
22daa06028
4
win.cpp
4
win.cpp
|
@ -56,7 +56,7 @@ static POINT mouse_pos;
|
||||||
static bool quit;
|
static bool quit;
|
||||||
static HINSTANCE instance;
|
static HINSTANCE instance;
|
||||||
|
|
||||||
LONG WINAPI ScreenSaverProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
LRESULT WINAPI ScreenSaverProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------------
|
/*-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -271,7 +271,7 @@ BOOL WINAPI RegisterDialogClasses(HANDLE hInst) { return TRUE; }
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
LONG WINAPI ScreenSaverProc(HWND hwnd_in,UINT message,WPARAM wparam,LPARAM lparam)
|
LRESULT WINAPI ScreenSaverProc(HWND hwnd_in,UINT message,WPARAM wparam,LPARAM lparam)
|
||||||
{
|
{
|
||||||
|
|
||||||
RECT r;
|
RECT r;
|
||||||
|
|
Loading…
Reference in New Issue