This commit is contained in:
Hongze Cheng 2022-03-18 09:22:15 +00:00
parent 6a8424b671
commit 2a597151c9
2 changed files with 3 additions and 3 deletions

View File

@ -23,6 +23,9 @@ typedef struct __attribute__((__packed__)) {
u16 nFree;
} SPageHdr;
extern SPageMethods pageMethods;
extern SPageMethods pageLargeMethods;
typedef struct __attribute__((__packed__)) {
u8 szCell[2];
u8 nxOffset[2];

View File

@ -47,9 +47,6 @@ typedef struct {
void (*setCellOffset)(SPage *, int, int);
} SPageMethods;
extern SPageMethods pageMethods;
extern SPageMethods pageLargeMethods;
// Page footer
typedef struct __attribute__((__packed__)) {
u8 cksm[4];