mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-11 09:52:13 +03:00
15 lines
393 B
C
Vendored
15 lines
393 B
C
Vendored
/*
|
|
* Copyright (C) 2021 Kovid Goyal <kovid at kovidgoyal.net>
|
|
*
|
|
* Distributed under terms of the GPL3 license.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <wayland-client.h>
|
|
|
|
#define GLFW_WAYLAND_TEXT_INPUT_INTERFACE_NAME "zwp_text_input_manager_v3"
|
|
|
|
void _glfwWaylandBindTextInput(struct wl_registry* registry, uint32_t name);
|
|
void _glfwWaylandInitTextInput(void);
|
|
void _glfwWaylandDestroyTextInput(void);
|