mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
23 lines
522 B
C
23 lines
522 B
C
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <wayland-server.h>
|
||
|
#include <wlr/interfaces/wlr_switch.h>
|
||
|
#include <wlr/types/wlr_switch.h>
|
||
|
|
||
|
void wlr_switch_init(struct wlr_switch *lid_switch,
|
||
|
struct wlr_switch_impl *impl) {
|
||
|
lid_switch->impl = impl;
|
||
|
wl_signal_init(&lid_switch->events.toggle);
|
||
|
}
|
||
|
|
||
|
void wlr_switch_destroy(struct wlr_switch *lid_switch) {
|
||
|
if (!lid_switch) {
|
||
|
return;
|
||
|
}
|
||
|
if (lid_switch->impl && lid_switch->impl->destroy) {
|
||
|
lid_switch->impl->destroy(lid_switch);
|
||
|
} else {
|
||
|
free(lid_switch);
|
||
|
}
|
||
|
}
|