Code:
Private Declare Function NtGetTickCount Lib "ntdll.dll" () As Long
seems to work fine for me under Windows 2000. Anyone know how to tell for sure if the Win32 GetTickCount API is a wrapper around this native API? Because if its a lower level, it might be somewhat more efficient for debug time testing. Then again, the 10ms resolution of accuracy might cancel out a difference.

Thanks.