mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00

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
18 lines
331 B
C
18 lines
331 B
C
#ifndef NVIM_MSGPACK_RPC_HELPERS_H
|
|
#define NVIM_MSGPACK_RPC_HELPERS_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <msgpack.h>
|
|
|
|
#include "nvim/os/wstream.h"
|
|
#include "nvim/api/private/defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "msgpack_rpc/helpers.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_MSGPACK_RPC_HELPERS_H
|
|
|