X11 backend: fix window behavior with multiple show() calls
[platform/upstream/libwlmessage.git] / toytoolkit / text-cursor-position-protocol.c
1 #include <stdlib.h>
2 #include <stdint.h>
3 #include "wayland-util.h"
4
5 extern const struct wl_interface wl_surface_interface;
6
7 static const struct wl_interface *types[] = {
8         &wl_surface_interface,
9         NULL,
10         NULL,
11 };
12
13 static const struct wl_message text_cursor_position_requests[] = {
14         { "notify", "off", types + 0 },
15 };
16
17 WL_EXPORT const struct wl_interface text_cursor_position_interface = {
18         "text_cursor_position", 1,
19         1, text_cursor_position_requests,
20         0, NULL,
21 };
22