#pragma once // IWYU pragma: private, include "nvim/os/pty_process.h" #include #include "nvim/event/process.h" #include "nvim/lib/queue_defs.h" #include "nvim/os/pty_conpty_win.h" typedef struct pty_process { Process process; uint16_t width, height; conpty_t *conpty; HANDLE finish_wait; HANDLE process_handle; uv_timer_t wait_eof_timer; } PtyProcess; // Structure used by build_cmd_line() typedef struct arg_node { char *arg; // pointer to argument. QUEUE node; // QUEUE structure. } ArgNode; #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/pty_process_win.h.generated.h" #endif