here is speedtest:
Framework BRL.Blitz Import BRL.StandardIO SuperStrict Extern "Win32" Function GetTickCount() End Extern Local count:Int=1000000 For Local t:Int=0 To 10 Print "Test Millisecs()~n" Local a:Int=MilliSecs() For Local i:Int=0 Until count Local b:Int=MilliSecs() Next Local c:Int=MilliSecs() Local d:Int=c-a Print "Millisecs()= "+d+"ms~n" Print "Test GetTickCount()~n" a=MilliSecs() For Local i:Int=0 Until count Local b:Int=GetTickCount() Next c=MilliSecs() d=c-a Print "GetTickCount()= "+d Print "-----------------------" Next