mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
13 lines
360 B
C
13 lines
360 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <wayland-client.h>
|
|
|
|
#include "wayland.h"
|
|
|
|
extern const struct wl_keyboard_listener keyboard_listener;
|
|
extern const struct wl_pointer_listener pointer_listener;
|
|
|
|
void input_repeat(struct wayland *wayl, uint32_t key);
|
|
void input_execute_binding(
|
|
struct terminal *term, enum binding_action action, uint32_t serial);
|