| [ |
| { |
| "function_name": "sqlite3LoadExtension", |
| "function_signature": "static int sqlite3LoadExtension(\n sqlite3 *db, /* Load the extension into this database connection */\n const char *zFile, /* Name of the shared library containing extension */\n const char *zProc, /* Entry point. Use \"sqlite3_extension_init\" if 0 */\n char **pzErrMsg /* Put error message here if not 0 */\n)", |
| "test_filename": "tests_loadext_sqlite3LoadExtension.c" |
| }, |
| { |
| "function_name": "sqlite3_load_extension", |
| "function_signature": "int sqlite3_load_extension(\n sqlite3 *db, /* Load the extension into this database connection */\n const char *zFile, /* Name of the shared library containing extension */\n const char *zProc, /* Entry point. Use \"sqlite3_extension_init\" if 0 */\n char **pzErrMsg /* Put error message here if not 0 */\n)", |
| "test_filename": "tests_loadext_sqlite3_load_extension.c" |
| }, |
| { |
| "function_name": "sqlite3_enable_load_extension", |
| "function_signature": "int sqlite3_enable_load_extension(sqlite3 *db, int onoff)", |
| "test_filename": "tests_loadext_sqlite3_enable_load_extension.c" |
| }, |
| { |
| "function_name": "sqlite3_auto_extension", |
| "function_signature": "int sqlite3_auto_extension(\n void (*xInit)(void)\n)", |
| "test_filename": "tests_loadext_sqlite3_auto_extension.c" |
| }, |
| { |
| "function_name": "sqlite3_cancel_auto_extension", |
| "function_signature": "int sqlite3_cancel_auto_extension(\n void (*xInit)(void)\n)", |
| "test_filename": "tests_loadext_sqlite3_cancel_auto_extension.c" |
| }, |
| { |
| "function_name": "sqlite3_reset_auto_extension", |
| "function_signature": "void sqlite3_reset_auto_extension(void)", |
| "test_filename": "tests_loadext_sqlite3_reset_auto_extension.c" |
| }, |
| { |
| "function_name": "sqlite3AutoLoadExtensions", |
| "function_signature": "void sqlite3AutoLoadExtensions(sqlite3 *db)", |
| "test_filename": "tests_loadext_sqlite3AutoLoadExtensions.c" |
| } |
| ] |