commit e8951cc

seiko  ·  2026-06-02 15:20:24 +0000 UTC
parent 64e4683
Add X11 header implementation
1 files changed,  +17, -0
+17, -0
 1@@ -0,0 +1,17 @@
 2+#ifndef MAUSWIN_X11_H
 3+#define MAUSWIN_X11_H
 4+
 5+#include <X11/Xlib.h>
 6+
 7+typedef struct {
 8+	Display*       display;
 9+	Window         root;
10+	Window         win;
11+
12+	const char*    title;
13+	int            width;
14+	int            height;
15+} MausWindow;
16+
17+#endif /* MAUSWIN_X11_H */
18+