sway-patched-tray-menu-github/include/sway/output.h

17 lines
297 B
C
Raw Normal View History

#ifndef _SWAY_OUTPUT_H
#define _SWAY_OUTPUT_H
2017-11-11 20:41:18 +01:00
#include <time.h>
#include <wayland-server.h>
#include <wlr/types/wlr_output.h>
2017-11-11 20:41:18 +01:00
struct sway_server;
struct sway_output {
struct wlr_output *wlr_output;
struct sway_server *server;
struct timespec last_frame;
2017-11-18 17:22:02 +01:00
struct wl_listener frame;
2017-11-11 20:41:18 +01:00
};
#endif