#ifndef COMET_X11_H #define COMET_X11_H #include typedef struct Window Window; Window *window_create(void); cairo_t *window_get_context(Window *win); double window_get_scale(Window *win); void window_paint_surface(Window *win, cairo_surface_t *surface, int width, int height); void window_destroy(Window *win); #endif // vim: set ts=4 sw=4 et