blob: 0483d824cd6f12aa5f3c89dd0fe97e91566d8a40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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 {};
|