提交 81b0634f 编写于 作者: H Hongze Cheng

more

上级 61e6faaf
...@@ -25,10 +25,19 @@ ...@@ -25,10 +25,19 @@
extern "C" { extern "C" {
#endif #endif
typedef int8_t i8;
typedef int16_t i16;
typedef int32_t i32;
typedef int64_t i64;
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef struct SPgFile SPgFile; typedef struct SPgFile SPgFile;
// SPgno // SPgno
typedef int32_t SPgno; typedef u32 SPgno;
#define TDB_IVLD_PGNO ((pgno_t)0) #define TDB_IVLD_PGNO ((pgno_t)0)
// fileid // fileid
...@@ -37,7 +46,7 @@ typedef int32_t SPgno; ...@@ -37,7 +46,7 @@ typedef int32_t SPgno;
// pgid_t // pgid_t
typedef struct { typedef struct {
uint8_t fileid[TDB_FILE_ID_LEN]; uint8_t fileid[TDB_FILE_ID_LEN];
SPgno pgno; SPgno pgno;
} pgid_t, SPgid; } pgid_t, SPgid;
#define TDB_IVLD_PGID (pgid_t){0, TDB_IVLD_PGNO}; #define TDB_IVLD_PGID (pgid_t){0, TDB_IVLD_PGNO};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册