aboutsummaryrefslogtreecommitdiff
path: root/wayland.h
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-10-11 02:30:18 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-10-11 02:30:18 -0400
commitf43ec9b27ebe37b799709985f5587e29ec8ef88b (patch)
treecfae61b2e1ffc3658bdf67450666f5f0c89b2b92 /wayland.h
parentba3a68a4f73f6653b1e1b095abc08234dedc504d (diff)
refactor to .h files
Diffstat (limited to 'wayland.h')
-rw-r--r--wayland.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/wayland.h b/wayland.h
new file mode 100644
index 0000000..c5f4daa
--- /dev/null
+++ b/wayland.h
@@ -0,0 +1,12 @@
+#ifndef WAYLAND_H_
+#define WAYLAND_H_
+
+#include "state.h"
+
+void setup_registry(client_state* state);
+void setup_surface(client_state* state);
+void setup_seat(client_state* state, uint32_t name);
+void setup_pointer(client_state* state);
+void setup_keyboard(client_state* state);
+
+#endif