diff options
author | drh <drh@noemail.net> | 2014-08-20 13:25:06 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-08-20 13:25:06 +0000 |
commit | fb90841adf94e9edbfa02d4506a26d2a05da11e9 (patch) | |
tree | 3fb1761a39428a81e110f4d8950acae05818ccc9 /src | |
parent | 53d89cdfe98e7c5b07527ff65cffa91798fa3ed9 (diff) | |
download | sqlite-fb90841adf94e9edbfa02d4506a26d2a05da11e9.tar.gz sqlite-fb90841adf94e9edbfa02d4506a26d2a05da11e9.zip |
Add SQLITE_API macros in front of interface routines in the test_intarray.c
extension.
FossilOrigin-Name: eea0661798e10018615854c871f24be0f8bb2ff9
Diffstat (limited to 'src')
-rw-r--r-- | src/test_intarray.c | 4 | ||||
-rw-r--r-- | src/test_intarray.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test_intarray.c b/src/test_intarray.c index f5c3d9e40..efcd21d40 100644 --- a/src/test_intarray.c +++ b/src/test_intarray.c @@ -216,7 +216,7 @@ static sqlite3_module intarrayModule = { ** explicitly by the application, the virtual table will be dropped implicitly ** by the system when the database connection is closed. */ -int sqlite3_intarray_create( +SQLITE_API int sqlite3_intarray_create( sqlite3 *db, const char *zName, sqlite3_intarray **ppReturn @@ -250,7 +250,7 @@ int sqlite3_intarray_create( ** any query against the corresponding virtual table. If the integer ** array does change or is deallocated undefined behavior will result. */ -int sqlite3_intarray_bind( +SQLITE_API int sqlite3_intarray_bind( sqlite3_intarray *pIntArray, /* The intarray object to bind to */ int nElements, /* Number of elements in the intarray */ sqlite3_int64 *aElements, /* Content of the intarray */ diff --git a/src/test_intarray.h b/src/test_intarray.h index 6d26235a8..84b1f3fe6 100644 --- a/src/test_intarray.h +++ b/src/test_intarray.h @@ -102,7 +102,7 @@ typedef struct sqlite3_intarray sqlite3_intarray; ** explicitly by the application, the virtual table will be dropped implicitly ** by the system when the database connection is closed. */ -int sqlite3_intarray_create( +SQLITE_API int sqlite3_intarray_create( sqlite3 *db, const char *zName, sqlite3_intarray **ppReturn @@ -115,7 +115,7 @@ int sqlite3_intarray_create( ** any query against the corresponding virtual table. If the integer ** array does change or is deallocated undefined behavior will result. */ -int sqlite3_intarray_bind( +SQLITE_API int sqlite3_intarray_bind( sqlite3_intarray *pIntArray, /* The intarray object to bind to */ int nElements, /* Number of elements in the intarray */ sqlite3_int64 *aElements, /* Content of the intarray */ |