mirror of
https://github.com/wizbright/waybox.git
synced 2026-03-16 05:34:07 -04:00
Cleanup
This commit is contained in:
parent
43fcf1ebf1
commit
8bc4352eb8
9 changed files with 62 additions and 124 deletions
|
|
@ -7,21 +7,21 @@
|
|||
#include "waybox/server.h"
|
||||
|
||||
struct wb_seat {
|
||||
struct wlr_seat * seat;
|
||||
struct wlr_seat *seat;
|
||||
|
||||
struct wl_list keyboards;
|
||||
};
|
||||
|
||||
struct wb_keyboard {
|
||||
struct wl_list link;
|
||||
struct wb_server * server;
|
||||
struct wlr_input_device * device;
|
||||
struct wb_server *server;
|
||||
struct wlr_input_device *device;
|
||||
|
||||
struct wl_listener modifiers;
|
||||
struct wl_listener key;
|
||||
};
|
||||
|
||||
struct wb_server;
|
||||
struct wb_seat * wb_seat_create(struct wb_server * server);
|
||||
void wb_seat_destroy(struct wb_seat * seat);
|
||||
struct wb_seat *wb_seat_create(struct wb_server *server);
|
||||
void wb_seat_destroy(struct wb_seat *seat);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue