diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-06-12 01:43:26 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-06-12 01:43:26 +0000 |
commit | 2a764eb0cd9755ff464c9ef7c900e3fd8feef0cc (patch) | |
tree | 162f21e267994ef0e245be0569155a9299026b47 /src/sqliteInt.h | |
parent | dc8453fd7acab7acdcbf68c5ef13717e8e8e6587 (diff) | |
download | sqlite-2a764eb0cd9755ff464c9ef7c900e3fd8feef0cc.tar.gz sqlite-2a764eb0cd9755ff464c9ef7c900e3fd8feef0cc.zip |
Change prototype for busy callbacks to "int xBusy(void *, int);" (CVS 1573)
FossilOrigin-Name: 4f1cfca5ca703d0068cf8d6222dc8e0cfb7e24b6
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 7cf1a4b28..e69fe5651 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.283 2004/06/12 00:42:35 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.284 2004/06/12 01:43:27 danielk1977 Exp $ */ #include "config.h" #include "sqlite3.h" @@ -342,8 +342,8 @@ struct Db { ** callback is currently invoked only from within pager.c. */ struct BusyHandler { - int (*xFunc)(void *,const char*,int); /* The busy callback */ - void *pArg; /* First arg to busy callback */ + int (*xFunc)(void *,int); /* The busy callback */ + void *pArg; /* First arg to busy callback */ }; /* |