[CYLFRAC] Fix 3 MSVC-x64 warnings about TimeProc() (#1157)

- "...\cylfrac.c(160): warning C4028: formal parameter 3 different from declaration"
- "...\cylfrac.c(160): warning C4028: formal parameter 4 different from declaration"
- "...\cylfrac.c(160): warning C4028: formal parameter 5 different from declaration"

CORE-7538
This commit is contained in:
Serge Gautherie 2018-12-18 13:30:28 +01:00 committed by Hermès BÉLUSCA - MAÏTO
parent 57786d7d3a
commit 58135d7d41

View file

@ -112,7 +112,7 @@ void DrawScene(HWND hwnd, HDC dc, int ticks)
EndPaint(hwnd, &ps);
}
void CALLBACK TimeProc(UINT uID, UINT uMsg, DWORD dwUser, DWORD dw1, DWORD dw2)
void CALLBACK TimeProc(UINT uID, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)
{
InvalidateRect((HWND)dwUser, NULL, 0);
}