[WINDOWSNT]: Include w32term.h.
author |
Andrew Innes <andrewi@gnu.org> |
date |
Sun, 06 Feb 2000 23:37:49 +0000 |
parents |
7ca771f4c076 |
children |
6c9ee29e8955 |
files |
src/frame.c src/window.c |
diffstat |
2 files changed, 6 insertions(+), 0 deletions(-)
[+]
|
line diff
--- 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"
--- 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))