From 46dc9b440ba4f9bde54c778b529eb4dc9897dcbb Mon Sep 17 00:00:00 2001 From: Quentin Glidic Date: Thu, 18 Aug 2016 11:15:44 +0200 Subject: [PATCH] libweston: Move text_backend_* to weston.h Signed-off-by: Quentin Glidic Reviewed-by: Daniel Stone --- compositor/weston.h | 8 ++++++++ libweston/compositor.h | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/compositor/weston.h b/compositor/weston.h index bff5cc1f..bb040020 100644 --- a/compositor/weston.h +++ b/compositor/weston.h @@ -66,6 +66,14 @@ wet_load_module(const char *name, const char *entrypoint); int wet_load_xwayland(struct weston_compositor *comp); +struct text_backend; + +struct text_backend * +text_backend_init(struct weston_compositor *ec); + +void +text_backend_destroy(struct text_backend *text_backend); + #ifdef __cplusplus } #endif diff --git a/libweston/compositor.h b/libweston/compositor.h index 4ca52f96..534c8c2e 100644 --- a/libweston/compositor.h +++ b/libweston/compositor.h @@ -1690,14 +1690,6 @@ weston_recorder_stop(struct weston_recorder *recorder); struct clipboard * clipboard_create(struct weston_seat *seat); -struct text_backend; - -struct text_backend * -text_backend_init(struct weston_compositor *ec); - -void -text_backend_destroy(struct text_backend *text_backend); - struct weston_view_animation; typedef void (*weston_view_animation_done_func_t)(struct weston_view_animation *animation, void *data);