diff options
| author | 2025-08-09 18:57:19 +0800 | |
|---|---|---|
| committer | 2025-08-09 18:57:19 +0800 | |
| commit | e011e342420fe1f1f5d2fee932447b194f989032 (patch) | |
| tree | 01c19ac7f5b7ce540cc3fd98581e29d8f7b782bd /examples/zigcrypto.zig | |
| parent | Merge pull request #188 from gracen-writes-code/master (diff) | |
| download | zig-sqlite-e011e342420fe1f1f5d2fee932447b194f989032.tar.gz zig-sqlite-e011e342420fe1f1f5d2fee932447b194f989032.tar.xz zig-sqlite-e011e342420fe1f1f5d2fee932447b194f989032.zip | |
chore: update to zig 0.15
Everything other than loadextension works. zig 0.15 remove
usingnamespac, so tha whole mechanism has to be reworked, and idk how
Diffstat (limited to 'examples/zigcrypto.zig')
| -rw-r--r-- | examples/zigcrypto.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/zigcrypto.zig b/examples/zigcrypto.zig index 05c44a5..9489df1 100644 --- a/examples/zigcrypto.zig +++ b/examples/zigcrypto.zig | |||
| @@ -39,7 +39,7 @@ fn createAllFunctions(db: *sqlite.Db) !void { | |||
| 39 | ); | 39 | ); |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | pub export fn sqlite3_zigcrypto_init(raw_db: *c.sqlite3, err_msg: [*c][*c]u8, api: *c.sqlite3_api_routines) callconv(.C) c_int { | 42 | pub export fn sqlite3_zigcrypto_init(raw_db: *c.sqlite3, err_msg: [*c][*c]u8, api: *c.sqlite3_api_routines) callconv(.c) c_int { |
| 43 | _ = err_msg; | 43 | _ = err_msg; |
| 44 | 44 | ||
| 45 | c.sqlite3_api = api; | 45 | c.sqlite3_api = api; |