1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-23 07:27:17 +01:00
sway-patched-tray-menu/include/sway/output.h

20 lines
352 B
C
Raw Normal View History

#ifndef _SWAY_OUTPUT_H
#define _SWAY_OUTPUT_H
2017-11-11 14:41:18 -05:00
#include <time.h>
#include <wayland-server.h>
#include <wlr/types/wlr_output.h>
2017-11-11 14:41:18 -05:00
struct sway_server;
2017-11-19 17:04:28 -05:00
struct sway_container;
2017-11-11 14:41:18 -05:00
struct sway_output {
struct wlr_output *wlr_output;
2017-11-19 17:04:28 -05:00
struct sway_container *swayc;
2017-11-11 14:41:18 -05:00
struct sway_server *server;
struct timespec last_frame;
2017-11-18 11:22:02 -05:00
struct wl_listener frame;
2017-11-11 14:41:18 -05:00
};
#endif