summaryrefslogtreecommitdiff
path: root/c/loadable_extension.zig (follow)
Commit message (Collapse)AuthorAgeFilesLines
* c: add a workaround for SQLITE_TRANSIENT being mistranslatedGravatar Vincent Rischmann2024-04-141-0/+1
| | | | | | | | | | | See https://github.com/ziglang/zig/issues/15893 zig's translate-c creates an invalid type for SQLITE_TRANSIENT on some architectures (aarch64, riscv64 and others). We can work around this by making a C function that returns -1 cast to the proper destructor type and use that from zig (thanks https://github.com/Cloudef for mentioning this in this comment: https://github.com/ziglang/zig/issues/15893#issuecomment-1925092582)
* c: create_filename now returns a `const char*`Gravatar Vincent Rischmann2023-11-261-1/+1
|
* fix all C prototypesGravatar Vincent Rischmann2023-02-051-47/+47
|
* add wrapper functions when building a loadable extensionGravatar Vincent Rischmann2022-09-181-0/+809