diff options
author | drh <> | 2025-02-03 14:44:16 +0000 |
---|---|---|
committer | drh <> | 2025-02-03 14:44:16 +0000 |
commit | cf9f841c5e64a71ee5566b653c59d610e2685ac1 (patch) | |
tree | 8e05adc8144d5c138443915ad0296c5f8b1bf876 /ext/wasm/api | |
parent | f306ca52861de23de08b2247e8f30ce426fa8fcb (diff) | |
parent | 77586831edf2f93cd8a74c1845aa6ed609cdfc1f (diff) | |
download | sqlite-cf9f841c5e64a71ee5566b653c59d610e2685ac1.tar.gz sqlite-cf9f841c5e64a71ee5566b653c59d610e2685ac1.zip |
Fix the build process on Windows so that it generates identical sqlite3.c,
sqlite3.h, and shell.c files on Windows and Unix. This patch also includes
a change to JS bindings that got caught up in the branch.
FossilOrigin-Name: 91ef45fc2902e46813366ec6b8317209f39f10e4a23c3808e33aceedab9da6c7
Diffstat (limited to 'ext/wasm/api')
-rw-r--r-- | ext/wasm/api/sqlite3-api-glue.c-pp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-api-glue.c-pp.js b/ext/wasm/api/sqlite3-api-glue.c-pp.js index 680218370..ddcf2535f 100644 --- a/ext/wasm/api/sqlite3-api-glue.c-pp.js +++ b/ext/wasm/api/sqlite3-api-glue.c-pp.js @@ -232,7 +232,7 @@ globalThis.sqlite3ApiBootstrap.initializers.push(function(sqlite3){ "sqlite3_context*", "int", "*", new wasm.xWrap.FuncPtrAdapter({ name: 'xDestroyAuxData', - signature: 'v(*)', + signature: 'v(p)', contextKey: (argv, argIndex)=>argv[0/* sqlite3_context* */] }) ]], |