diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-12 02:25:17 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:01 +0200 |
commit | da51dc9cf202772f60bd2da975dbef257bd9237c (patch) | |
tree | 5c16b93238a153f55634e9323077f30c8133970c /src/nvim/os/uv_helpers.h | |
parent | ffe61e5ba1721340ca51d56bae3ddaca415fb5bc (diff) | |
download | rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.tar.gz rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.tar.bz2 rneovim-da51dc9cf202772f60bd2da975dbef257bd9237c.zip |
Introduce nvim namespace: Move files.
Move files from src/ to src/nvim/.
- src/nvim/ becomes the new root dir for nvim executable sources.
- src/libnvim/ is planned to become root dir of the neovim library.
Diffstat (limited to 'src/nvim/os/uv_helpers.h')
-rw-r--r-- | src/nvim/os/uv_helpers.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/nvim/os/uv_helpers.h b/src/nvim/os/uv_helpers.h new file mode 100644 index 0000000000..9d4cea30b2 --- /dev/null +++ b/src/nvim/os/uv_helpers.h @@ -0,0 +1,47 @@ +#ifndef NEOVIM_OS_UV_HELPERS_H +#define NEOVIM_OS_UV_HELPERS_H + +#include <uv.h> + +#include "os/wstream_defs.h" +#include "os/rstream_defs.h" +#include "os/job_defs.h" + +/// Gets the RStream instance associated with a libuv handle +/// +/// @param handle libuv handle +/// @return the RStream pointer +RStream *handle_get_rstream(uv_handle_t *handle); + +/// Associates a RStream instance with a libuv handle +/// +/// @param handle libuv handle +/// @param rstream the RStream pointer +void handle_set_rstream(uv_handle_t *handle, RStream *rstream); + +/// Gets the WStream instance associated with a libuv handle +/// +/// @param handle libuv handle +/// @return the WStream pointer +WStream *handle_get_wstream(uv_handle_t *handle); + +/// Associates a WStream instance with a libuv handle +/// +/// @param handle libuv handle +/// @param wstream the WStream pointer +void handle_set_wstream(uv_handle_t *handle, WStream *wstream); + +/// Gets the Job instance associated with a libuv handle +/// +/// @param handle libuv handle +/// @return the Job pointer +Job *handle_get_job(uv_handle_t *handle); + +/// Associates a Job instance with a libuv handle +/// +/// @param handle libuv handle +/// @param job the Job pointer +void handle_set_job(uv_handle_t *handle, Job *job); + +#endif // NEOVIM_OS_UV_HELPERS_H + |