libdb/test/xa/src1/htimestampxa.h
2011-09-13 13:44:24 -04:00

13 lines
214 B
C

#ifndef HTIMESTAMPXA_H
#define HTIMESTAMPXA_H
/*
* Timestamp with microseconds precision
*/
typedef struct __HTimestampData {
time_t Sec;
time_t Usec;
} HTimestampData;
void GetTime(HTimestampData *);
#endif