blob: e0c2948f1a0110ad3463f0d2880baeb7b6de4ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef GSR_WINDOW_X11_H
#define GSR_WINDOW_X11_H
#include "window.h"
typedef struct _XDisplay Display;
gsr_window* gsr_window_x11_create(Display *display);
#endif /* GSR_WINDOW_X11_H */
|