# HG changeset patch # User Andrew Innes # Date 949880269 0 # Node ID ab6c81c6edf80c710bbfb3f55648c07da5859f65 # Parent 7ca771f4c0762e22d9d2eee4804182677095778a [WINDOWSNT]: Include w32term.h. diff -r 7ca771f4c076 -r ab6c81c6edf8 src/frame.c --- a/src/frame.c Sun Feb 06 23:37:47 2000 +0000 +++ b/src/frame.c Sun Feb 06 23:37:49 2000 +0000 @@ -26,6 +26,9 @@ #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 -r 7ca771f4c076 -r ab6c81c6edf8 src/window.c --- a/src/window.c Sun Feb 06 23:37:47 2000 +0000 +++ b/src/window.c Sun Feb 06 23:37:49 2000 +0000 @@ -36,6 +36,9 @@ #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))