mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-08-04 06:38:37 +00:00
- Token is formatted without allocation - Reusable function for formatToken - Tests in portal.zig are actuall included now
18 lines
603 B
Zig
18 lines
603 B
Zig
// The required comptime API for any apprt.
|
|
pub const App = @import("gtk/App.zig");
|
|
pub const Surface = @import("gtk/Surface.zig");
|
|
pub const resourcesDir = @import("gtk/flatpak.zig").resourcesDir;
|
|
|
|
// The exported API, custom for the apprt.
|
|
pub const class = @import("gtk/class.zig");
|
|
pub const WeakRef = @import("gtk/weak_ref.zig").WeakRef;
|
|
pub const pre_exec = @import("gtk/pre_exec.zig");
|
|
pub const post_fork = @import("gtk/post_fork.zig");
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
_ = @import("gtk/ext.zig");
|
|
_ = @import("gtk/key.zig");
|
|
_ = @import("gtk/portal.zig");
|
|
}
|