From f8c3a14dc32cd27df7f9772ab59690e56626d807 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 8 Dec 2014 22:31:35 -0300 Subject: msgpack-rpc: Add remote_ui module The remote_ui module is an implementation of the UI layer, and it attaches UI instances that redirect redraw notifications to connected clients. --- src/nvim/msgpack_rpc/remote_ui.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/nvim/msgpack_rpc/remote_ui.h (limited to 'src/nvim/msgpack_rpc/remote_ui.h') diff --git a/src/nvim/msgpack_rpc/remote_ui.h b/src/nvim/msgpack_rpc/remote_ui.h new file mode 100644 index 0000000000..8af86dc1b8 --- /dev/null +++ b/src/nvim/msgpack_rpc/remote_ui.h @@ -0,0 +1,9 @@ +#ifndef NVIM_MSGPACK_RPC_REMOTE_UI_H +#define NVIM_MSGPACK_RPC_REMOTE_UI_H + +#include "nvim/ui.h" + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "msgpack_rpc/remote_ui.h.generated.h" +#endif +#endif // NVIM_MSGPACK_RPC_REMOTE_UI_H -- cgit