From 8f23f280539076bf81fef5b7cbea963050715db0 Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Sun, 6 Feb 2000 23:37:49 +0000 Subject: [PATCH] [WINDOWSNT]: Include w32term.h. --- src/frame.c | 3 +++ src/window.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/frame.c b/src/frame.c index f8b086196f8..8aac87023e4 100644 --- a/src/frame.c +++ b/src/frame.c @@ -26,6 +26,9 @@ Boston, MA 02111-1307, USA. */ #ifdef HAVE_X_WINDOWS #include "xterm.h" #endif +#ifdef WINDOWSNT +#include "w32term.h" +#endif #include "frame.h" #ifdef HAVE_WINDOW_SYSTEM #include "fontset.h" diff --git a/src/window.c b/src/window.c index d8ae5258289..809641dbc13 100644 --- a/src/window.c +++ b/src/window.c @@ -36,6 +36,9 @@ Boston, MA 02111-1307, USA. */ #ifdef HAVE_X_WINDOWS #include "xterm.h" #endif /* HAVE_X_WINDOWS */ +#ifdef WINDOWSNT +#include "w32term.h" +#endif #ifndef max #define max(a, b) ((a) < (b) ? (b) : (a)) -- 2.39.5