mirror of
https://github.com/wizbright/waybox.git
synced 2026-03-15 05:34:08 -04:00
Basic seat support
This commit is contained in:
parent
cb67c24718
commit
1cd178e9ce
5 changed files with 36 additions and 0 deletions
16
include/waybox/seat.h
Normal file
16
include/waybox/seat.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef _WB_SEAT_H
|
||||
#define _WB_SEAT_H
|
||||
|
||||
#include <wlr/types/wlr_seat.h>
|
||||
|
||||
#include "waybox/server.h"
|
||||
|
||||
struct wb_seat {
|
||||
struct wlr_seat * seat;
|
||||
};
|
||||
|
||||
struct wb_server;
|
||||
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