You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
219 B
11 lines
219 B
9 years ago
|
#ifndef _SWAY_OUTPUT_H
|
||
|
#define _SWAY_OUTPUT_H
|
||
|
|
||
|
#include "container.h"
|
||
|
#include "focus.h"
|
||
|
|
||
|
swayc_t *output_by_name(const char* name);
|
||
|
swayc_t *swayc_adjacent_output(swayc_t *output, enum movement_direction dir);
|
||
|
|
||
|
#endif
|