swayfx/include/sway/output.h
2017-11-18 11:22:02 -05:00

16 lines
297 B
C

#ifndef _SWAY_OUTPUT_H
#define _SWAY_OUTPUT_H
#include <time.h>
#include <wayland-server.h>
#include <wlr/types/wlr_output.h>
struct sway_server;
struct sway_output {
struct wlr_output *wlr_output;
struct sway_server *server;
struct timespec last_frame;
struct wl_listener frame;
};
#endif