internal static extern IntPtr sqlite3_create_disposable_module_interop(
     IntPtr db, IntPtr name, IntPtr pModule, int iVersion, xCreate xCreate,
     xConnect xConnect, xBestIndex xBestIndex, xDisconnect xDisconnect,
     xDestroy xDestroy, xOpen xOpen, xClose xClose, xFilter xFilter,
     xNext xNext, xEof xEof, xColumn xColumn, xRowId xRowId, xUpdate xUpdate,
     xBegin xBegin, xSync xSync, xCommit xCommit, xRollback xRollback,
     xFindFunction xFindFunction, xRename xRename, xSavepoint xSavepoint,
     xRelease xRelease, xRollbackTo xRollbackTo, IntPtr pClientData,
     xDestroyModule xDestroyModule);
 internal static extern IntPtr sqlite3_create_disposable_module(IntPtr db, IntPtr name, ref sqlite3_module module, IntPtr pClientData, xDestroyModule xDestroy);