예제 #1
0
파일: main.cpp 프로젝트: zulman/qutemol
void StartTime(){
  sw.Start();
}
예제 #2
0
파일: main.cpp 프로젝트: zulman/qutemol
long int TakeTime(FILE *f , char *st){
  long int delta=sw.Time();
  fprintf(f,"%5ldmsec: %s\n",delta,st);
  //globaltime=timen;
  return delta;
}
예제 #3
0
파일: wxFM.cpp 프로젝트: 0vermind/NeoLoader
DWORD WINAPI GetTickCount(VOID) {
	static wxStopWatch sw;
	return sw.Time();
}