diff --git a/main.cc b/main.cc index 100b720..083b7f8 100644 --- a/main.cc +++ b/main.cc @@ -1,15 +1,20 @@ #include +#include #include int main() { + wl_registry_listener listener; wl_display* display = wl_display_connect(nullptr); if (display) { std::cout << "found\n"; } else { std::cout << "not found\n"; + return 0; } + wl_registry* registry = wl_display_get_registry(display); + return 0; } \ No newline at end of file