First code for the new callback-free API.  All regression tests pass but the
new API is mostly untested and is unlikely to work. (CVS 852)

FossilOrigin-Name: 065fa818ffc8d7562889172acea16e4e44e773ef
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 51d7a55..734eadd 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
 *************************************************************************
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqliteInt.h,v 1.156 2003/01/18 20:11:07 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.157 2003/01/28 23:13:12 drh Exp $
 */
 #include "config.h"
 #include "sqlite.h"
@@ -748,6 +748,7 @@
   u8 schemaVerified;   /* True if an OP_VerifySchema has been coded someplace
                        ** other than after an OP_Transaction */
   u8 isTemp;           /* True if parsing temporary tables */
+  u8 useCallback;      /* True if callbacks should be used to report results */
   int newTnum;         /* Table number to use when reparsing CREATE TABLEs */
   int nErr;            /* Number of errors seen */
   int nTab;            /* Number of previously allocated VDBE cursors */