commit a91a411

uint  ·  2026-07-13 17:00:59 +0000 UTC
parent 0486e6f
Remove maus_x11.h from source
1 files changed,  +0, -27
+0, -27
 1@@ -1,27 +0,0 @@
 2-#ifndef MAUS_X11_H
 3-#define MAUS_X11_H
 4-
 5-#include <stdbool.h>
 6-
 7-#include <X11/Xlib.h>
 8-#include <X11/extensions/XShm.h>
 9-
10-typedef enum {
11-	MAUS_ATOM_WM_DELETE_WINDOW,
12-	MAUS_ATOM_LAST,
13-} MausX11Atoms;
14-
15-typedef struct {
16-	Display*       display;
17-	Window         root;
18-	Window         win;
19-	Atom           atoms[MAUS_ATOM_LAST];
20-	GC             gc;
21-
22-	XImage*        image;
23-	XShmSegmentInfo shm;
24-	bool           shmat;
25-} MausBackend;
26-
27-#endif /* MAUS_X11_H */
28-