diff options
author | Bert <ber.t@gmx.com> | 2011-01-20 21:44:34 +0100 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-01-20 21:44:34 +0100 |
commit | 029e1208b91250f4bd91ecc2015d051294fb9d3f (patch) | |
tree | c746d1a81e7babb17283d2326bdd2dea310eb4ed /window.h | |
parent | 08018427c61435de9cd8dca1d1cc9bb69ca2fd74 (diff) |
No more expose handling
Diffstat (limited to 'window.h')
-rw-r--r-- | window.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 */ |