Re: ntoskrnl.exe: [2/2] Implement KeQueryInterruptTime
7 Apr
2008
7 Apr
'08
4: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.
7 Apr
7 Apr
7:18 p.m.
New subject: ntoskrnl.exe: [2/2][try 2] Implement KeQueryInterruptTime
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 -- By by ... Detlef
6460
Age (days ago)
6460
Last active (days ago)
1 comments
2 participants
participants (2)
-
Detlef Riekenberg -
Dmitry Timoshkov