fix(win32): add missing multi cursor function stubs

This commit is contained in:
CJ van den Berg 2025-08-25 21:13:33 +02:00
parent 5caab36297
commit dd5bdfdf8a
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -476,3 +476,14 @@ pub fn cursor_disable(self: *Self) void {
_ = self;
//@panic("todo");
}
pub fn clear_all_multi_cursors(self: *Self) !void {
_ = self;
//@panic("todo");
}
pub fn show_multi_cursor_yx(self: *Self, y: c_int, x: c_int) !void {
_ = self;
_ = y;
_ = x;
//@panic("todo");
}