From: Andrew Innes Date: Sun, 6 Feb 2000 23:37:49 +0000 (+0000) Subject: [WINDOWSNT]: Include w32term.h. X-Git-Tag: emacs-pretest-21.0.90~5076 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8f23f280539076bf81fef5b7cbea963050715db0;p=emacs.git [WINDOWSNT]: Include w32term.h. --- 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))