From 39bf23adb8ad077a1388cfe733a5561604c60282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Sun, 5 Jan 2025 16:53:17 -0500 Subject: [PATCH] Maybe I need to move the #include to after <windows.h>? --- src/syncterm/conn_conpty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/syncterm/conn_conpty.c b/src/syncterm/conn_conpty.c index 50d8fba043..875a3424d2 100644 --- a/src/syncterm/conn_conpty.c +++ b/src/syncterm/conn_conpty.c @@ -1,10 +1,10 @@ -#if NTDDI_VERSION >= 0x0A000006 - #define WIN32_LEAN_AND_MEAN #include <stdatomic.h> #include <windows.h> #include <wincon.h> +#if NTDDI_VERSION >= 0x0A000006 + #include "bbslist.h" #include "conn.h" #include "uifcinit.h" -- GitLab