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

#include "utils.h"

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

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