mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-23 01:48:37 +03:00
9 lines
179 B
Zig
9 lines
179 B
Zig
const std = @import("std");
|
|
const c = @import("c.zig").c;
|
|
|
|
pub const Queue = *anyopaque; // dispatch_queue_t
|
|
|
|
pub fn getMain() Queue {
|
|
return c.dispatch_get_main_queue().?;
|
|
}
|