[PATCH v2 5/8] kernel32: Implement GetSystemTimeAsFileTime() directly.

Huw Davies huw at codeweavers.com
Wed May 15 05:58:45 CDT 2019


On Tue, May 14, 2019 at 08:31:29PM +0200, Alexandre Julliard wrote:
> If the extra call to ntdll is really that expensive, you could probably
> forward to it instead.

Ah, nice.  I've sent in a series that does that.

For GetTickCount64() I could do the same thing, but it would mean
changing NtGetTickCount() to return a ULONGLONG.  This should be fine
as callers will just ignore the upper 32-bits (and hopefully there's
nothing out there that relies on the wrapping).  Is that ok?

I don't care too much about the changes I made to
QueryPerformanceCounter(), that's a higher accuracy timer so can
afford to be slower.

Huw.



More information about the wine-devel mailing list