mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 19:06:31 +00:00
msgpack-rpc: Create subdirectory for msgpack-rpc modules
Create the msgpack_rpc subdirectory and move all modules that deal with msgpack-rpc to it. Also merge msgpack_rpc.c into msgpack_rpc/helpers.c
This commit is contained in:
15
src/nvim/msgpack_rpc/channel.h
Normal file
15
src/nvim/msgpack_rpc/channel.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef NVIM_MSGPACK_RPC_CHANNEL_H
|
||||
#define NVIM_MSGPACK_RPC_CHANNEL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <uv.h>
|
||||
|
||||
#include "nvim/api/private/defs.h"
|
||||
#include "nvim/vim.h"
|
||||
|
||||
#define METHOD_MAXLEN 512
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "msgpack_rpc/channel.h.generated.h"
|
||||
#endif
|
||||
#endif // NVIM_MSGPACK_RPC_CHANNEL_H
|
Reference in New Issue
Block a user