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 {
|
2019-03-19 23:41:20 +01:00
|
|
|
void (*destroy)(struct wlr_switch *switch_device);
|
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,
|
2018-11-15 00:24:55 +01:00
|
|
|
struct wlr_switch_impl *impl);
|
2019-03-19 23:41:20 +01:00
|
|
|
void wlr_switch_destroy(struct wlr_switch *switch_device);
|
2018-11-15 00:24:55 +01:00
|
|
|
|
|
|
|
#endif
|