might as well do this

This commit is contained in:
Mars 2025-04-30 03:00:48 -04:00
parent f6a7bee047
commit 3ad961a571
Signed by: pupbrained
GPG key ID: 0FF5B8826803F895
6 changed files with 424 additions and 227 deletions

View file

@ -1,9 +1,13 @@
#pragma once
#include <wayland-client.h>
#ifdef __linux__
// clang-format off
#include <wayland-client.h> // Wayland client library
#include "src/core/util/defs.hpp"
#include "src/core/util/types.hpp"
// clang-format on
struct wl_display;
@ -56,3 +60,5 @@ namespace wl {
[[nodiscard]] fn fd() const -> util::types::i32 { return get_fd(m_Display); }
};
} // namespace wl
#endif // __linux__