diff options
author | dan <dan@noemail.net> | 2010-06-19 18:12:02 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2010-06-19 18:12:02 +0000 |
commit | 8ce49d6ac0d238483a411145416187ff3cb15bf3 (patch) | |
tree | 9ca5dc34d2173a8c1d87d4a87811ae7c0dda4b0b /src/sqlite.h.in | |
parent | 146ed78b7818b43845ae44d3cbb12c7c80183be5 (diff) | |
download | sqlite-8ce49d6ac0d238483a411145416187ff3cb15bf3.tar.gz sqlite-8ce49d6ac0d238483a411145416187ff3cb15bf3.zip |
Change the name of IOCAP_SAFE_DELETE to IOCAP_UNDELETABLE_WHEN_OPEN. Have the xDeviceCharacteristics() method of the win32 VFS return this flag.
FossilOrigin-Name: 5a5ff4e3e4c707464f227907d0aefb8ef42180dd
Diffstat (limited to 'src/sqlite.h.in')
-rw-r--r-- | src/sqlite.h.in | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 093d5b3e7..f91f25b3f 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -497,18 +497,18 @@ int sqlite3_exec( ** information is written to disk in the same order as calls ** to xWrite(). */ -#define SQLITE_IOCAP_ATOMIC 0x00000001 -#define SQLITE_IOCAP_ATOMIC512 0x00000002 -#define SQLITE_IOCAP_ATOMIC1K 0x00000004 -#define SQLITE_IOCAP_ATOMIC2K 0x00000008 -#define SQLITE_IOCAP_ATOMIC4K 0x00000010 -#define SQLITE_IOCAP_ATOMIC8K 0x00000020 -#define SQLITE_IOCAP_ATOMIC16K 0x00000040 -#define SQLITE_IOCAP_ATOMIC32K 0x00000080 -#define SQLITE_IOCAP_ATOMIC64K 0x00000100 -#define SQLITE_IOCAP_SAFE_APPEND 0x00000200 -#define SQLITE_IOCAP_SEQUENTIAL 0x00000400 -#define SQLITE_IOCAP_SAFE_DELETE 0x00000800 +#define SQLITE_IOCAP_ATOMIC 0x00000001 +#define SQLITE_IOCAP_ATOMIC512 0x00000002 +#define SQLITE_IOCAP_ATOMIC1K 0x00000004 +#define SQLITE_IOCAP_ATOMIC2K 0x00000008 +#define SQLITE_IOCAP_ATOMIC4K 0x00000010 +#define SQLITE_IOCAP_ATOMIC8K 0x00000020 +#define SQLITE_IOCAP_ATOMIC16K 0x00000040 +#define SQLITE_IOCAP_ATOMIC32K 0x00000080 +#define SQLITE_IOCAP_ATOMIC64K 0x00000100 +#define SQLITE_IOCAP_SAFE_APPEND 0x00000200 +#define SQLITE_IOCAP_SEQUENTIAL 0x00000400 +#define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN 0x00000800 /* ** CAPI3REF: File Locking Levels |