Exemplo n.º 1
0
void StartTime(){
  sw.Start();
}
Exemplo n.º 2
0
long int TakeTime(FILE *f , char *st){
  long int delta=sw.Time();
  fprintf(f,"%5ldmsec: %s\n",delta,st);
  //globaltime=timen;
  return delta;
}
Exemplo n.º 3
0
DWORD WINAPI GetTickCount(VOID) {
	static wxStopWatch sw;
	return sw.Time();
}