mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-30 08:45:23 +00:00
@cImport is going to disappear in Zig 0.17. Its deprecated in Zig 0.16. Let's remove it now. Replace @cImport with addTranslateC across pkg/ packages. Each package now has a c_import.h header that is translated at build time via addTranslateC and exposed as a "cimport" module import. Converted packages: - dcimgui - fontconfig - freetype - glslang - harfbuzz - macos - oniguruma - opengl - sentry - spirv-cross - wuffs Omitted: - gtk4-layer-shell - This has a bit more complexity with how it interacts with GTK headers, so I need to consider this a bit more. - src/ - It'll be cleaner to do this separately.
36 lines
939 B
Zig
36 lines
939 B
Zig
pub const c = @import("c");
|
|
|
|
const transport = @import("transport.zig");
|
|
|
|
pub const Envelope = @import("envelope.zig").Envelope;
|
|
pub const Level = @import("level.zig").Level;
|
|
pub const Transport = transport.Transport;
|
|
pub const Value = @import("value.zig").Value;
|
|
pub const UUID = @import("uuid.zig").UUID;
|
|
|
|
pub fn captureEvent(value: Value) ?UUID {
|
|
const uuid: UUID = .{ .value = c.sentry_capture_event(value.value) };
|
|
if (uuid.isNil()) return null;
|
|
return uuid;
|
|
}
|
|
|
|
pub fn setContext(key: []const u8, value: Value) void {
|
|
c.sentry_set_context_n(key.ptr, key.len, value.value);
|
|
}
|
|
|
|
pub fn removeContext(key: []const u8) void {
|
|
c.sentry_remove_context_n(key.ptr, key.len);
|
|
}
|
|
|
|
pub fn setTag(key: []const u8, value: []const u8) void {
|
|
c.sentry_set_tag_n(key.ptr, key.len, value.ptr, value.len);
|
|
}
|
|
|
|
pub fn free(ptr: *anyopaque) void {
|
|
c.sentry_free(ptr);
|
|
}
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|