mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
15 lines
173 B
C
15 lines
173 B
C
|
#ifndef HDBREC_H
|
||
|
#define HDBREC_H
|
||
|
|
||
|
#include "htimestampxa.h"
|
||
|
|
||
|
/*
|
||
|
* DB record
|
||
|
*/
|
||
|
typedef struct __HDbRec {
|
||
|
long SeqNo;
|
||
|
HTimestampData Ts;
|
||
|
char Msg[10];
|
||
|
} HDbRec;
|
||
|
#endif
|