mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
29 lines
672 B
C
29 lines
672 B
C
|
#ifndef _SWAY_CLIENT_REGISTRY_H
|
||
|
#define _SWAY_CLIENT_REGISTRY_H
|
||
|
|
||
|
#include <wayland-client.h>
|
||
|
#include "wayland-desktop-shell-client-protocol.h"
|
||
|
#include "list.h"
|
||
|
|
||
|
struct output_state {
|
||
|
struct wl_output *output;
|
||
|
uint32_t flags;
|
||
|
uint32_t width, height;
|
||
|
};
|
||
|
|
||
|
struct registry {
|
||
|
struct wl_compositor *compositor;
|
||
|
struct wl_display *display;
|
||
|
struct wl_pointer *pointer;
|
||
|
struct wl_seat *seat;
|
||
|
struct wl_shell *shell;
|
||
|
struct wl_shm *shm;
|
||
|
struct desktop_shell *desktop_shell;
|
||
|
list_t *outputs;
|
||
|
};
|
||
|
|
||
|
struct registry *registry_poll(void);
|
||
|
void registry_teardown(struct registry *registry);
|
||
|
|
||
|
#endif
|