aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/pipe_process.h
blob: 65e5cfa78f5749d14a6564ad021c233f11354ad4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef NVIM_OS_PIPE_PROCESS_H
#define NVIM_OS_PIPE_PROCESS_H

#include <uv.h>

typedef struct {
  // Structures for process spawning/management used by libuv
  uv_process_t proc;
  uv_process_options_t proc_opts;
  uv_stdio_container_t stdio[3];
  uv_pipe_t proc_stdin, proc_stdout, proc_stderr;
} UvProcess;

#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/pipe_process.h.generated.h"
#endif
#endif  // NVIM_OS_PIPE_PROCESS_H