neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

libuv_proc.h (232B)


      1 #pragma once
      2 
      3 #include <uv.h>
      4 
      5 #include "nvim/event/defs.h"
      6 
      7 typedef struct {
      8  Proc proc;
      9  uv_process_t uv;
     10  uv_process_options_t uvopts;
     11  uv_stdio_container_t uvstdio[4];
     12 } LibuvProc;
     13 
     14 #include "event/libuv_proc.h.generated.h"