mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[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:
parent
57786d7d3a
commit
58135d7d41
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue