diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-12 07:33:33 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-12 07:33:33 +0000 |
commit | cfcdaefe114bd97fc705742ade03b18f76de5445 (patch) | |
tree | 278e9747cc5dedf7a8ad1e7aeddc13bbe85a7927 /src/sqliteInt.h | |
parent | 779b6d357a32aa3301c09d215eab82c56dd9203a (diff) | |
download | sqlite-cfcdaefe114bd97fc705742ade03b18f76de5445.tar.gz sqlite-cfcdaefe114bd97fc705742ade03b18f76de5445.zip |
Change the table record format to support manifest typing. (CVS 1361)
FossilOrigin-Name: 0242c9e4f7c85e9c911cf30d90b0cdb1015f3d7d
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 117688743..fcfe381df 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.229 2004/05/10 23:29:50 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.230 2004/05/12 07:33:33 danielk1977 Exp $ */ #include "config.h" #include "sqlite.h" @@ -1288,3 +1288,5 @@ void sqlite3utf16to16be(void *pData, int N); int sqlite3PutVarint(unsigned char *, u64); int sqlite3GetVarint(const unsigned char *, u64 *); int sqlite3VarintLen(u64 v); + + |