diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-10-11 02:30:18 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-10-11 02:30:18 -0400 |
| commit | f43ec9b27ebe37b799709985f5587e29ec8ef88b (patch) | |
| tree | cfae61b2e1ffc3658bdf67450666f5f0c89b2b92 /wayland.h | |
| parent | ba3a68a4f73f6653b1e1b095abc08234dedc504d (diff) | |
refactor to .h files
Diffstat (limited to 'wayland.h')
| -rw-r--r-- | wayland.h | 12 |
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 |
