mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
20 lines
321 B
C
20 lines
321 B
C
/*-
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 2011, 2012 Oracle and/or its affiliates. All rights reserved.
|
|
*/
|
|
|
|
#ifndef HDBREC_H
|
|
#define HDBREC_H
|
|
|
|
#include "htimestampxa.h"
|
|
|
|
/*
|
|
* DB record
|
|
*/
|
|
typedef struct __HDbRec {
|
|
long SeqNo;
|
|
HTimestampData Ts;
|
|
char Msg[10];
|
|
} HDbRec;
|
|
#endif
|