pty_proc_unix.h (292B)
1 #pragma once 2 // IWYU pragma: private, include "nvim/os/pty_proc.h" 3 4 #include <stdint.h> 5 #include <sys/ioctl.h> 6 7 #include "nvim/event/defs.h" 8 9 typedef struct { 10 Proc proc; 11 uint16_t width, height; 12 struct winsize winsize; 13 int tty_fd; 14 } PtyProc; 15 16 #include "os/pty_proc_unix.h.generated.h"