aboutsummaryrefslogtreecommitdiff
path: root/src/msgpack_rpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/msgpack_rpc.h')
-rw-r--r--src/msgpack_rpc.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/msgpack_rpc.h b/src/msgpack_rpc.h
new file mode 100644
index 0000000000..f713e5eeb5
--- /dev/null
+++ b/src/msgpack_rpc.h
@@ -0,0 +1,30 @@
+#ifndef NEOVIM_MSGPACK_RPC_H
+#define NEOVIM_MSGPACK_RPC_H
+
+#include <stdint.h>
+#include <stdbool.h>
+
+#include <msgpack.h>
+
+bool msgpack_rpc_call(msgpack_object *req, msgpack_packer *res);
+bool msgpack_rpc_dispatch(msgpack_object *req, msgpack_packer *res);
+void msgpack_rpc_response(msgpack_object *req, msgpack_packer *res);
+void msgpack_rpc_success(msgpack_object *req, msgpack_packer *res);
+bool msgpack_rpc_error(msgpack_object *req, msgpack_packer *res, char *msg);
+char **msgpack_rpc_array_argument(msgpack_object *obj);
+char *msgpack_rpc_raw_argument(msgpack_object *obj);
+uint32_t msgpack_rpc_integer_argument(msgpack_object *obj);
+bool msgpack_rpc_array_result(char **result,
+ msgpack_object *req,
+ msgpack_packer *res);
+bool msgpack_rpc_raw_result(char *result,
+ msgpack_object *req,
+ msgpack_packer *res);
+bool msgpack_rpc_integer_result(uint32_t result,
+ msgpack_object *req,
+ msgpack_packer *res);
+bool msgpack_rpc_void_result(msgpack_object *req, msgpack_packer *res);
+
+
+#endif // NEOVIM_MSGPACK_RPC_H
+