commit 7a8c3b6
uint
·
2026-08-03 16:50:22 +0000 UTC
parent fea897c
Stub wayland functions
1 files changed,
+83,
-0
+83,
-0
1@@ -0,0 +1,83 @@
2+#include "maus.h"
3+#include "maus_wayland.h"
4+
5+void maus_clear(Maus* mw, MausColor col)
6+{
7+
8+}
9+
10+void maus_clipboard_set_text(Maus* mw, const char* text)
11+{
12+
13+}
14+
15+char* maus_clipboard_get_text(Maus* mw)
16+{
17+
18+}
19+
20+void maus_close(Maus* mw)
21+{
22+
23+}
24+
25+int8_t maus_close_window(Maus* mw)
26+{
27+
28+}
29+
30+int8_t maus_create_window(Maus* mw)
31+{
32+
33+}
34+
35+void maus_die(const char* fmt, ...)
36+{
37+
38+}
39+
40+uint64_t maus_get_time_ns(void)
41+{
42+
43+}
44+
45+Maus* maus_init(const char* title, int x, int y, int width, int height)
46+{
47+
48+}
49+
50+void maus_log(FILE* fd, const char* fmt, ...)
51+{
52+
53+}
54+
55+int8_t maus_event_poll(Maus* mw, MausEvent* ev)
56+{
57+
58+}
59+
60+void maus_event_wait(Maus* mw, MausEvent* ev)
61+{
62+
63+}
64+
65+void maus_present(Maus* mw)
66+{
67+
68+}
69+
70+int8_t maus_resize(Maus* mw, uint32_t width, uint32_t height)
71+{
72+
73+}
74+
75+void maus_target_fps(Maus* mw, uint32_t fps)
76+{
77+
78+}
79+
80+void maus_cur_set_mode(Maus* mw, MausCursorState state)
81+{
82+
83+}
84+