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