1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Make the latest interfaces usable by loadable extensions. (CVS 4343)

FossilOrigin-Name: e9b2700b8c30b0255c9e33419ff18bdebb78087a
This commit is contained in:
drh
2007-08-30 16:23:19 +00:00
parent 2f2d8c7331
commit 428e282662
7 changed files with 79 additions and 17 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.398 2007/08/24 16:08:29 drh Exp $
** $Id: main.c,v 1.399 2007/08/30 16:23:19 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1098,7 +1098,7 @@ int sqlite3_open(
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0);
}
int sqlite3_open_v2(
const void *filename, /* Database filename (UTF-8) */
const char *filename, /* Database filename (UTF-8) */
sqlite3 **ppDb, /* OUT: SQLite db handle */
int flags, /* Flags */
const char *zVfs /* Name of VFS module to use */