diff options
author | xengineering <me@xengineering.eu> | 2023-01-04 20:26:48 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-01-06 14:22:53 +0100 |
commit | bb177c6e2c4f70165405034b0d3355affde3c859 (patch) | |
tree | 4ebe5a1f88b6466d37a59417fa1bcd5f6d2ad8e4 /main.c | |
parent | 29af5d65bc753adf3edad3028c7473124a0b000d (diff) | |
download | phonelock-bb177c6e2c4f70165405034b0d3355affde3c859.tar phonelock-bb177c6e2c4f70165405034b0d3355affde3c859.tar.zst phonelock-bb177c6e2c4f70165405034b0d3355affde3c859.zip |
Implement first connection to Wayland compositor
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -1,9 +1,18 @@ #include <stdio.h> +#include <wayland-client.h> -int main(void) { - printf("Hello world!\n"); +int main(void) +{ + struct wl_display *display = wl_display_connect(NULL); + if (!display) { + fprintf(stderr, "Failed to connect to Wayland display.\n"); + return 1; + } + fprintf(stderr, "Connection established!\n"); + + wl_display_disconnect(display); return 0; } |