Re: #2 kernel32: Implement GetTickCount64.

2007-07-09 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > --- a/dlls/ntdll/ntdll.spec > +++ b/dlls/ntdll/ntdll.spec > @@ -178,6 +178,7 @@ > # @ stub NtGetDevicePowerState > @ stub NtGetPlugPlayEvent > @ stdcall NtGetTickCount() > +@ stdcall NtGetTickCount64() > # @ stub NtGetWriteWatch Windows doesn't hav

Re: #2 kernel32: Implement GetTickCount64.

2007-07-08 Thread Hans Leidekker
On Sunday 08 July 2007 14:35:46 Rolf Kalbermatter wrote: > >@@ -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(). No, but I didn't want

RE: #2 kernel32: Implement GetTickCount64.

2007-07-08 Thread Rolf Kalbermatter
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() directl