diff options
author | drh <drh@noemail.net> | 2006-01-12 02:50:09 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-01-12 02:50:09 +0000 |
commit | f06c59a3e576b397cf75294b7bfef70d44c30005 (patch) | |
tree | dc1cf2331782bcccf667060239cfad66f62afb6b /src | |
parent | e321c29a7b1fd10013e64c8f2ff111de61f28f6f (diff) | |
download | sqlite-f06c59a3e576b397cf75294b7bfef70d44c30005.tar.gz sqlite-f06c59a3e576b397cf75294b7bfef70d44c30005.zip |
Mark the end of the return codes in the sqlite3.h.in template file. (CVS 2923)
FossilOrigin-Name: 19b848d99f215914454422edc0ce72422de0774e
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 92caceedd..8cc900e00 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -12,7 +12,7 @@ ** This header file defines the interface that the SQLite library ** presents to client programs. ** -** @(#) $Id: sqlite.h.in,v 1.155 2006/01/11 21:41:22 drh Exp $ +** @(#) $Id: sqlite.h.in,v 1.156 2006/01/12 02:50:10 drh Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -192,6 +192,7 @@ int sqlite3_exec( #define SQLITE_NOTADB 26 /* File opened that is not a database file */ #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ +/* end-of-return-codes */ /* ** Each entry in an SQLite table has a unique integer key. (The key is |