crywl/src/lib/notify.h

16 lines
711 B
C
Raw Normal View History

2025-08-27 16:36:00 +10:00
#ifndef CRYWL_NOTIFY_H
#define CRYWL_NOTIFY_H
/* ===== Function Declarations ===== */
static void commitnotify(struct wl_listener *listener, void *data);
static void destroynotify(struct wl_listener *listener, void *data);
static void fullscreennotify(struct wl_listener *listener, void *data);
static void mapnotify(struct wl_listener *listener, void *data);
static void maximizenotify(struct wl_listener *listener, void *data);
static void motionnotify(uint32_t time, struct wlr_input_device *device,
double sx, double sy, double sx_unaccel,
double sy_unaccel);
static void unmapnotify(struct wl_listener *listener, void *data);
#endif /* CRYWL_NOTIFY_H */