00001 /* Win32 performance counter functions to get a high-resolution timer 00002 * 00003 * By Wu Yongwei 00004 * 00005 */ 00006 00007 #ifndef _PCTIMER_H 00008 #define _PCTIMER_H 00009 00010 typedef double pctimer_t; 00011 00012 pctimer_t pctimer(void); 00013 00014 #endif /* _PCTIMER_H */ 00015 00016