mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
14 lines
214 B
C
14 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
|