mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-24 20:56:08 +03:00
20 lines
539 B
Zig
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 {};
|