aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/channel.h')
-rw-r--r--src/nvim/os/channel.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/nvim/os/channel.h b/src/nvim/os/channel.h
index 543b91dd89..a1c650a378 100644
--- a/src/nvim/os/channel.h
+++ b/src/nvim/os/channel.h
@@ -4,7 +4,6 @@
#include <uv.h>
#include "nvim/vim.h"
-#include "nvim/os/channel_defs.h"
/// Initializes the module
void channel_init(void);
@@ -16,15 +15,13 @@ void channel_teardown(void);
/// pipe/socket client connection
///
/// @param stream The established connection
-/// @param prot The rpc protocol used
-void channel_from_stream(uv_stream_t *stream, ChannelProtocol prot);
+void channel_from_stream(uv_stream_t *stream);
/// Creates an API channel by starting a job and connecting to its
/// stdin/stdout. stderr is forwarded to the editor error stream.
///
/// @param argv The argument vector for the process
-/// @param prot The rpc protocol used
-void channel_from_job(char **argv, ChannelProtocol prot);
+void channel_from_job(char **argv);
/// Sends event/data to channel
///