00001 #ifndef TimeCounter_H 00002 #define TimeCounter_H 00003 00004 #include <windows.h> 00005 #include <time.h> 00006 00007 LONGLONG __cdecl TimeCounter_read(); 00008 LONGLONG TimeCounter_init(); 00009 LONGLONG TimeCounter_getDiffInUs(LONGLONG countEnd, LONGLONG countStart); 00010 LONGLONG TimeCounter_getDiffInMs(LONGLONG countEnd, LONGLONG countStart); 00011 char* TimeCounter_toUsString(LONGLONG count); 00012 char* TimeCounter_toMsString(LONGLONG count); 00013 00014 #endif // TimeCounter_H