00001 #ifndef HTIMESTAMPXA_H 00002 #define HTIMESTAMPXA_H 00003 00004 /* 00005 * Timestamp with microseconds precision 00006 */ 00007 typedef struct __HTimestampData { 00008 time_t Sec; 00009 time_t Usec; 00010 } HTimestampData; 00011 00012 void GetTime(HTimestampData *); 00013 #endif