diff options
Diffstat (limited to 'window.h')
| -rw-r--r-- | window.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -7,6 +7,15 @@ typedef struct Window Window; +struct Window { + Connection *con; + xcb_drawable_t window; + cairo_surface_t *surface; + cairo_t *cr; + int x, y; + int width, height; +}; + Window *window_create(Connection *con); cairo_t *window_get_context(Window *win); |
