Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add inline documentation for custom extension functions #1267

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions sqlite3-binding.c
Original file line number Diff line number Diff line change
Expand Up @@ -178151,11 +178151,17 @@ SQLITE_PRIVATE int sqlite3StmtVtabInit(sqlite3*);
#ifdef SQLITE_EXTRA_AUTOEXT
int SQLITE_EXTRA_AUTOEXT(sqlite3*);
#endif
// CUSTOM_EXTENSIONS
// 1. Add custom extension initializer function declarations here...
// End CUSTOM_EXTENSIONS
/*
** An array of pointers to extension initializer functions for
** built-in extensions.
*/
static int (*const sqlite3BuiltinExtensions[])(sqlite3*) = {
// CUSTOM_EXTENSIONS
// 2. Include custom extension initializer functions here...
// End CUSTOM_EXTENSIONS
#ifdef SQLITE_ENABLE_FTS3
sqlite3Fts3Init,
#endif
Expand Down Expand Up @@ -256038,3 +256044,7 @@ int sqlite3_user_delete(
}

#endif /* SQLITE_USER_AUTHENTICATION */

// CUSTOM_EXTENSIONS
// 3. Add custom extension initializer functions here...
// End CUSTOM_EXTENSIONS