feat: added missing C API declarations#151
Merged
tomayac merged 1 commit intosqlite:mainfrom Feb 20, 2026
Merged
Conversation
Collaborator
|
FYI re. symbols: https://sqlite.org/wasm/doc/trunk/module-symbols.html shows all of the public-facing symbols of the module, generated dynamically from whatever version is loaded there (not every one of them is explicitly listed in the hand-maintained docs). That copy tends to get updated for any substantive changes and it was just now updated to the current trunk. That page is linked to somewhere on the https://sqlite.org/wasm home page. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I compared Emscripten output to our declarations, and it appears we have some missing declarations for capi namespace.
I've added the links to public documentation for each of these, but I couldn't find one for
sqlite3_column_origin_name.It's referenced here in the SQLite repository: https://github.com/sqlite/sqlite/blob/e8750019c25c3032d466f92808ea96ba7d9e4c22/src/vdbeapi.c#L1612-L1619