7 Apr
2008
7 Apr
'08
5:08 a.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.