diff options
author | drh <drh@noemail.net> | 2008-08-25 21:23:01 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-08-25 21:23:01 +0000 |
commit | c178ba88a466b2ea9833cf84c4627c25157cebeb (patch) | |
tree | cb26f04efeb616ed46e2d8c30603b4c7428b048c /src | |
parent | df81a25abe95853666a5f1c15d956cd3ecf6d7c6 (diff) | |
download | sqlite-c178ba88a466b2ea9833cf84c4627c25157cebeb.tar.gz sqlite-c178ba88a466b2ea9833cf84c4627c25157cebeb.zip |
Add the SQLITE_OPEN_FULLMUTEX definition to sqlite3.h. It currently is not
valid for anything. This is merely to reserve the number. (CVS 5612)
FossilOrigin-Name: 3b6ffb4492b6c43897692c49dcccbfb55963a46c
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index f275ff825..e51908b72 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -30,7 +30,7 @@ ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. ** -** @(#) $Id: sqlite.h.in,v 1.393 2008/08/22 00:22:35 aswift Exp $ +** @(#) $Id: sqlite.h.in,v 1.394 2008/08/25 21:23:02 drh Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -539,6 +539,7 @@ int sqlite3_exec( #define SQLITE_OPEN_SUBJOURNAL 0x00002000 #define SQLITE_OPEN_MASTER_JOURNAL 0x00004000 #define SQLITE_OPEN_NOMUTEX 0x00008000 +#define SQLITE_OPEN_FULLMUTEX 0x00010000 /* ** CAPI3REF: Device Characteristics {H10240} <H11120> |