mkxp-sunshine/journal/linux/display.h
Mathew Velasquez 8c15c73f04 Linux Niko
2016-11-05 02:01:07 -04:00

15 lines
250 B
C

#ifndef DISPLAY_H
#define DISPLAY_H
#include <stdbool.h>
#include <xcb/xcb.h>
#include <xcb/xcb_ewmh.h>
struct Display {
xcb_connection_t *c;
xcb_screen_t *screen;
};
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
#endif // DISPLAY_H