No more expose handling

This commit is contained in:
Bert
2011-01-20 21:44:34 +01:00
parent 08018427c6
commit 029e1208b9
5 changed files with 47 additions and 43 deletions

View File

@ -33,6 +33,8 @@ typedef struct win_env_s {
typedef struct win_s {
Window xwin;
win_env_t env;
Pixmap pm;
GC bgc;
int w;
int h;
@ -49,6 +51,8 @@ void win_close(win_t*);
void win_set_title(win_t*, const char*);
int win_configure(win_t*, XConfigureEvent*);
void win_clear(win_t*);
void win_draw(win_t*);
#endif /* WINDOW_H */