2018-11-15 00:24:55 +01:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WLR_INTERFACES_WLR_SWITCH_H
|
|
|
|
#define WLR_INTERFACES_WLR_SWITCH_H
|
|
|
|
|
|
|
|
#include <wlr/types/wlr_switch.h>
|
|
|
|
|
|
|
|
struct wlr_switch_impl {
|
2022-03-02 20:17:31 +01:00
|
|
|
const char *name;
|
2018-11-15 00:24:55 +01:00
|
|
|
};
|
|
|
|
|
2019-03-19 23:41:20 +01:00
|
|
|
void wlr_switch_init(struct wlr_switch *switch_device,
|
2022-02-09 21:53:42 +01:00
|
|
|
const struct wlr_switch_impl *impl, const char *name);
|
2022-03-02 20:17:31 +01:00
|
|
|
void wlr_switch_finish(struct wlr_switch *switch_device);
|
2018-11-15 00:24:55 +01:00
|
|
|
|
|
|
|
#endif
|