aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/rstream_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/rstream_defs.h')
-rw-r--r--src/nvim/os/rstream_defs.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/nvim/os/rstream_defs.h b/src/nvim/os/rstream_defs.h
deleted file mode 100644
index 45dced0b62..0000000000
--- a/src/nvim/os/rstream_defs.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef NVIM_OS_RSTREAM_DEFS_H
-#define NVIM_OS_RSTREAM_DEFS_H
-
-#include <stdbool.h>
-
-#include "nvim/rbuffer.h"
-
-typedef struct rstream RStream;
-
-/// Type of function called when the RStream receives data
-///
-/// @param rstream The RStream instance
-/// @param rbuffer The associated RBuffer instance
-/// @param data State associated with the RStream instance
-/// @param eof If the stream reached EOF.
-typedef void (*rstream_cb)(RStream *rstream, RBuffer *buf, void *data,
- bool eof);
-
-#endif // NVIM_OS_RSTREAM_DEFS_H
-