diff options
author | drh <drh@noemail.net> | 2007-08-15 13:04:54 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-15 13:04:54 +0000 |
commit | 90f6a5beff55f81faa7135189c65cbd8a569e63c (patch) | |
tree | 900595d8e00a7a44978f9686322a3ed50a73dcbc /src/sqliteInt.h | |
parent | d84f946be8340e2c9c7d86475665ae1610608e0e (diff) | |
download | sqlite-90f6a5beff55f81faa7135189c65cbd8a569e63c.tar.gz sqlite-90f6a5beff55f81faa7135189c65cbd8a569e63c.zip |
Add initial implementations of mutex and memory subsystem modules. (CVS 4226)
FossilOrigin-Name: c0fa3769790af199a4c8715c80bb8ff900730520
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 21e5dbd3c..019b0ef04 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.585 2007/08/08 12:11:21 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.586 2007/08/15 13:04:54 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -441,6 +441,7 @@ struct Schema { ** consistently. */ struct sqlite3 { + sqlite3_vfs *pVfs; /* OS Interface */ int nDb; /* Number of backends currently in use */ Db *aDb; /* All backends */ int flags; /* Miscellanous flags. See below */ |