sqlite3_create_module_v2
fn
int sqlite3_create_module_v2(
sqlite3 * db, /* SQLite connection to register module with */
const(char) * zName, /* Name of the module */
const(sqlite3_module) * p, /* Methods for the module */
void * pClientData, /* Client data for xCreate/xConnect */
void function (void *) xDestroy /* Module destructor function */
)Ditto