FreeBASIC  0.91.0
time_timer.c
Go to the documentation of this file.
1 /* timer() function */
2 
3 #include "../fb.h"
4 #include <time.h>
5 
6 FBCALL double fb_Timer( void )
7 {
8  LARGE_INTEGER t;
9  KeQuerySystemTime(&t);
10  return ((double)(t.QuadPart) * 100.0);
11 }