April 6, 2008
11:08 p.m.
"Detlef Riekenberg" <wine.dev(a)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 ? -- Dmitry.