diff options
author | stephan <stephan@noemail.net> | 2022-12-12 11:22:05 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-12-12 11:22:05 +0000 |
commit | 13e5512b288ab70490f6af4e9ded72114dedf0b5 (patch) | |
tree | 0cf4cee58dd57f2f065322e1e47d85f3bcc512bc /ext/wasm/api/sqlite3-api-prologue.js | |
parent | b2eb8a53523f34e71a9043512493341b1c98ca72 (diff) | |
download | sqlite-13e5512b288ab70490f6af4e9ded72114dedf0b5.tar.gz sqlite-13e5512b288ab70490f6af4e9ded72114dedf0b5.zip |
ext/wasm/module-symbols.html: add a hyperlink to the API docs for each exported sqlite3_...() function.
FossilOrigin-Name: 01d3a9bba3120cfec3f752048281f18ce7ab48fa7584750c097233a9ce095a20
Diffstat (limited to 'ext/wasm/api/sqlite3-api-prologue.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-prologue.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/wasm/api/sqlite3-api-prologue.js b/ext/wasm/api/sqlite3-api-prologue.js index 789e75cc6..4aecf2384 100644 --- a/ext/wasm/api/sqlite3-api-prologue.js +++ b/ext/wasm/api/sqlite3-api-prologue.js @@ -1959,6 +1959,10 @@ self.sqlite3ApiBootstrap = function sqlite3ApiBootstrap( some initializers. Retain them when running in test mode so that we can add tests for them. */ delete sqlite3.util; + /* It's conceivable that we might want to expose + StructBinder to client-side code, but it's only useful if + clients build their own sqlite3.wasm which contains their + one C struct types. */ delete sqlite3.StructBinder; } return sqlite3; |