diff options
author | drh <drh@noemail.net> | 2010-04-29 22:34:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-04-29 22:34:07 +0000 |
commit | 7ed91f2344f1cb6837e1fba1b83fba5b6ddce887 (patch) | |
tree | d8c391a5c11dcc10cf6e142e404ae8ad5b2d89d1 /src/sqliteInt.h | |
parent | 31cbbbad1ccf37ad2f83daf2b34416e643f75d3e (diff) | |
download | sqlite-7ed91f2344f1cb6837e1fba1b83fba5b6ddce887.tar.gz sqlite-7ed91f2344f1cb6837e1fba1b83fba5b6ddce887.zip |
Refactor wal.c to use the VFS. This check-in compiles and links and works
ok as long as you leave WAL turned off, but WAL does not work.
FossilOrigin-Name: 62db5fa3b61be885b2d94e9b9ce3877b2c588350
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 7fbe05340..54effce12 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -823,8 +823,8 @@ struct sqlite3 { void (*xRollbackCallback)(void*); /* Invoked at every commit. */ void *pUpdateArg; void (*xUpdateCallback)(void*,int, const char*,const char*,sqlite_int64); - int (*xLogCallback)(void *, sqlite3 *, const char *, int); - void *pLogArg; + int (*xWalCallback)(void *, sqlite3 *, const char *, int); + void *pWalArg; void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*); void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*); void *pCollNeededArg; |