libdb/test/xa/src1/htimestampxa.h

14 lines
214 B
C
Raw Normal View History

2011-09-13 17:44:24 +00:00
#ifndef HTIMESTAMPXA_H
#define HTIMESTAMPXA_H
/*
* Timestamp with microseconds precision
*/
typedef struct __HTimestampData {
time_t Sec;
time_t Usec;
} HTimestampData;
void GetTime(HTimestampData *);
#endif