[WINDOWSNT]: Include w32term.h.
authorAndrew Innes <andrewi@gnu.org>
Sun, 6 Feb 2000 23:37:49 +0000 (23:37 +0000)
committerAndrew Innes <andrewi@gnu.org>
Sun, 6 Feb 2000 23:37:49 +0000 (23:37 +0000)
src/frame.c
src/window.c

index f8b0861..8aac870 100644 (file)
@@ -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"
index d8ae525..809641d 100644 (file)
@@ -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))