summaryrefslogtreecommitdiff
path: root/src/wlstate.h
blob: 4143a74ca8538b0c3ff07f0018e7390b291d52b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "utils.h"

struct wl_state_s {
  wl_display_t display;
  wl_compositor_t compositor;
  xdg_wm_base_t wm_base;
  wl_surface_t surface;
};

bool wayc_wl_state_init(struct wl_state_s *state);
void wayc_wl_state_deinit(struct wl_state_s *state);