summaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2023-01-09 15:47:26 -0700
committercflip <cflip@cflip.net>2023-01-09 15:47:26 -0700
commitc1573dbbb3e70cad8c1f94cbed5b2abf2b124ace (patch)
tree8333d29b92f12f7cbf97deb38e25875887d6b19a /window.h
parent54d8fdd290e21ae8c773b4228827ee7539637ce8 (diff)
Implement basic keyboard event handling
Diffstat (limited to 'window.h')
-rw-r--r--window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.h b/window.h
index 0175838..1c2e019 100644
--- a/window.h
+++ b/window.h
@@ -4,7 +4,7 @@
struct editor_state;
void window_init();
-int window_handle_event();
+int window_handle_event(struct editor_state *editor);
void window_redraw(struct editor_state *editor);
void window_destroy();