ntoskrnl.exe: [2/2] Implement KeQueryInterruptTime

Dmitry Timoshkov dmitry at codeweavers.com
Sun Apr 6 23:08:17 CDT 2008


"Detlef Riekenberg" <wine.dev at 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.



More information about the wine-devel mailing list