Problem: Terminal feature does not build with older MSVC.
Solution: Do not use stdint.h.
extern "C" {
#endif
-#include <stdint.h>
#include <stdlib.h>
#include "vterm_keycodes.h"
#define TRUE 1
#define FALSE 0
+/* from stdint.h */
+typedef unsigned char uint8_t;
+typedef unsigned int uint32_t;
+
typedef struct VTerm VTerm;
typedef struct VTermState VTermState;
typedef struct VTermScreen VTermScreen;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 795,
/**/
794,
/**/