1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-13 09:32:47 +00:00

[WINDOWSNT]: Include w32term.h.

This commit is contained in:
Andrew Innes 2000-02-06 23:37:49 +00:00
parent 0052a264ee
commit 8f23f28053
2 changed files with 6 additions and 0 deletions

View 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"

View 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))