mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-07-28 19:46:35 +00:00
6 lines
98 B
Zig
6 lines
98 B
Zig
/// C: GhosttyResult
|
|
pub const Result = enum(c_int) {
|
|
success = 0,
|
|
out_of_memory = -1,
|
|
};
|