blob: 0175838cc6bc269afb5380c3dcfe35df2c5ff8cd (
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();
void window_redraw(struct editor_state *editor);
void window_destroy();
#endif
|