diff options
author | danielk1977 <danielk1977@noemail.net> | 2006-06-15 04:28:13 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2006-06-15 04:28:13 +0000 |
commit | d1ab1ba5ed68b51fd640a62a228a5b331829d83a (patch) | |
tree | 769bdcf5fb172a3192f30465958f9f2cf6c55e76 /src/sqlite.h.in | |
parent | 5aec042e275dee61ceee172e7ec9d32c2d881bd4 (diff) | |
download | sqlite-d1ab1ba5ed68b51fd640a62a228a5b331829d83a.tar.gz sqlite-d1ab1ba5ed68b51fd640a62a228a5b331829d83a.zip |
Add void* argument to sqlite3_create_module to replace sqlite3_module.pAux. (CVS 3251)
FossilOrigin-Name: 470a3a0b20775be1226fb4d477c798d8da2d5708
Diffstat (limited to 'src/sqlite.h.in')
-rw-r--r-- | src/sqlite.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 2f8f1443c..68f3a568b 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.176 2006/06/14 13:03:23 danielk1977 Exp $ +** @(#) $Id: sqlite.h.in,v 1.177 2006/06/15 04:28:13 danielk1977 Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -1536,7 +1536,6 @@ typedef struct sqlite3_module sqlite3_module; struct sqlite3_module { int iVersion; const char *zName; - void *pAux; int (*xCreate)(sqlite3*, void *pAux, int argc, char **argv, sqlite3_vtab **ppVTab); @@ -1649,7 +1648,8 @@ struct sqlite3_index_info { int sqlite3_create_module( sqlite3 *db, /* SQLite connection to register module with */ const char *zName, /* Name of the module */ - const sqlite3_module * /* Methods for the module */ + const sqlite3_module *, /* Methods for the module */ + void * /* Client data for xCreate/xConnect */ ); /* |