mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			537 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			537 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef WLR_INTERFACES_WLR_KEYBOARD_H
 | 
						|
#define WLR_INTERFACES_WLR_KEYBOARD_H
 | 
						|
 | 
						|
#include <wlr/types/wlr_keyboard.h>
 | 
						|
#include <stdint.h>
 | 
						|
 | 
						|
struct wlr_keyboard_impl {
 | 
						|
	void (*destroy)(struct wlr_keyboard *keyboard);
 | 
						|
	void (*led_update)(struct wlr_keyboard *keyboard, uint32_t leds);
 | 
						|
};
 | 
						|
 | 
						|
void wlr_keyboard_init(struct wlr_keyboard *keyboard, struct wlr_keyboard_impl *impl);
 | 
						|
void wlr_keyboard_destroy(struct wlr_keyboard *keyboard);
 | 
						|
void wlr_keyboard_update_state(struct wlr_keyboard *keyboard,
 | 
						|
		struct wlr_event_keyboard_key *event);
 | 
						|
 | 
						|
#endif
 |