blob: 1c2e019fb97addeb942540a708b452048bd6adfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _WINDOW_H
#define _WINDOW_H
struct editor_state;
void window_init();
int window_handle_event(struct editor_state *editor);
void window_redraw(struct editor_state *editor);
void window_destroy();
#endif
|