fix: merge vaxis and win32 event handling interfaces

This commit is contained in:
CJ van den Berg 2025-01-04 15:16:13 +01:00
parent 1fdb5f240b
commit 9047439315
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 11 additions and 19 deletions

View file

@ -149,7 +149,7 @@ pub fn leave_alternate_screen(self: *Self) void {
_ = self;
@panic("todo");
}
pub fn process_gui_event(self: *Self, m: thespian.message) !void {
pub fn process_renderer_event(self: *Self, m: thespian.message) !void {
const Input = struct {
kind: u8,
codepoint: u21,
@ -356,8 +356,3 @@ pub fn cursor_disable(self: *Self) void {
_ = self;
//@panic("todo");
}
pub fn ucs32_to_utf8(ucs32: []const u32, utf8: []u8) !usize {
_ = ucs32;
_ = utf8;
@panic("todo");
}