"Detlef Riekenberg" wine.dev@web.de wrote:
+ULONGLONG WINAPI KeQueryInterruptTime( void ) +{
- ULONGLONG totaltime;
- KeQueryTickCount( (LARGE_INTEGER *) &totaltime);
- return totaltime;
+}
Why not have a local variable of type LARGE_INTEGER and return li.QuadPart ?
Updated with the hints from Dmitry:
On Mo, 2008-04-07 at 13:08 +0900, Dmitry Timoshkov wrote:
Why not have a local variable of type LARGE_INTEGER and return li.QuadPart ?
Thanks.
Changelog: ntoskrnl.exe: Implement KeQueryInterruptTime