ghostty/src/apprt/none.zig
2025-07-14 14:48:12 -05:00

20 lines
539 B
Zig

const std = @import("std");
const Allocator = std.mem.Allocator;
const internal_os = @import("../os/main.zig");
const apprt = @import("../apprt.zig");
pub const resourcesDir = internal_os.resourcesDir;
pub const App = struct {
/// Always return false as there is no apprt to communicate with.
pub fn performIpc(
_: Allocator,
_: apprt.ipc.Target,
comptime action: apprt.ipc.Action.Key,
_: apprt.ipc.Action.Value(action),
) !bool {
return false;
}
};
pub const Surface = struct {};