Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 275 of file engmisc.c.
Referenced by co_EVENT_CallEvents(), and IntNotifyWinEvent().
{ ULONG Multiplier; LARGE_INTEGER TickCount; /* Get the multiplier and current tick count */ KeQueryTickCount(&TickCount); Multiplier = SharedUserData->TickCountMultiplier; /* Convert to milliseconds and return */ return (Int64ShrlMod32(UInt32x32To64(Multiplier, TickCount.LowPart), 24) + (Multiplier * (TickCount.HighPart << 8))); }