Hans Leidekker wrote:
Changelog Implement GetTickCount64.
....
--- a/dlls/kernel32/kernel_main.c +++ b/dlls/kernel32/kernel_main.c @@ -256,3 +256,11 @@ DWORD WINAPI GetTickCount(void) { return NtGetTickCount(); }
Is there a particular reason not to call NtGetTickCount64() directly here as is also done in NtGetTickCount().
On a side note: I wonder if older C compiler versions will simply do the right coercion from ULONGLONG to DWORD in these cases.
Rolf Kalbermatter