2026-05-06 21:46:54 +07:00
|
|
|
#include "types.h"
|
|
|
|
|
|
2026-05-03 22:56:12 +07:00
|
|
|
void
|
|
|
|
|
layer_surface_map(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
2026-05-06 21:46:54 +07:00
|
|
|
UNUSED(listener);
|
|
|
|
|
UNUSED(data);
|
2026-05-03 22:56:12 +07:00
|
|
|
}
|
2026-05-06 21:46:54 +07:00
|
|
|
|
2026-05-03 22:56:12 +07:00
|
|
|
void
|
|
|
|
|
layer_surface_unmap(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
2026-05-06 21:46:54 +07:00
|
|
|
UNUSED(listener);
|
|
|
|
|
UNUSED(data);
|
2026-05-03 22:56:12 +07:00
|
|
|
}
|
2026-05-06 21:46:54 +07:00
|
|
|
|
2026-05-03 22:56:12 +07:00
|
|
|
void
|
|
|
|
|
layer_surface_commit(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
2026-05-06 21:46:54 +07:00
|
|
|
UNUSED(listener);
|
|
|
|
|
UNUSED(data);
|
2026-05-03 22:56:12 +07:00
|
|
|
}
|
2026-05-06 21:46:54 +07:00
|
|
|
|
2026-05-03 22:56:12 +07:00
|
|
|
void
|
|
|
|
|
layer_surface_destroy(struct wl_listener *listener, void *data)
|
|
|
|
|
{
|
2026-05-06 21:46:54 +07:00
|
|
|
UNUSED(listener);
|
|
|
|
|
UNUSED(data);
|
2026-05-03 22:56:12 +07:00
|
|
|
}
|