diff options
author | dan <dan@noemail.net> | 2013-03-23 21:00:41 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2013-03-23 21:00:41 +0000 |
commit | f23da96636f9de1a81c939bd7a0cc25ee1d37f49 (patch) | |
tree | ce1c59a35bc86b4daae97ad7529038136d6c3ac8 /src/wal.h | |
parent | e5586a1a79f3d8e61ee6d263ec680c012ffbabfb (diff) | |
download | sqlite-f23da96636f9de1a81c939bd7a0cc25ee1d37f49.tar.gz sqlite-f23da96636f9de1a81c939bd7a0cc25ee1d37f49.zip |
Replace the sqlite3_io_methods.xMremap interface with sqlite3_io_methods.xFetch and xUnfetch.
FossilOrigin-Name: 1431be95579160fb70408d43e17fc23c7b69ab4a
Diffstat (limited to 'src/wal.h')
-rw-r--r-- | src/wal.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -53,8 +53,7 @@ typedef struct Wal Wal; /* Open and close a connection to a write-ahead log. */ -int sqlite3WalOpen( - sqlite3_vfs*, Pager *, sqlite3_file*, const char *, int, i64, Wal**); +int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *, int, i64, Wal**); int sqlite3WalClose(Wal *pWal, int sync_flags, int, u8 *); /* Set the limiting size of a WAL file. */ |