aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/print_mswin.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-10-07 03:09:50 +0000
committerGuy Harris <guy@alum.mit.edu>2003-10-07 03:09:50 +0000
commit546484336d8b615596f78ea3ce41bab134a32d5c (patch)
treed97c08986096787f301a16469a4d6ac6ee79b8a9 /gtk/print_mswin.c
parent3a0d0dcbc1838f13619d6f48f180b8bfcd1ec005 (diff)
From Gisle Vanem: if WIN32_LEAN_AND_MEAN is defined, <windows.h> doesn't
include <commdlg.h>, but "print_mswin.c" needs it, so include it explicitly. svn path=/trunk/; revision=8632
Diffstat (limited to 'gtk/print_mswin.c')
-rw-r--r--gtk/print_mswin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/print_mswin.c b/gtk/print_mswin.c
index 3bb61d7d6c..46b357cff8 100644
--- a/gtk/print_mswin.c
+++ b/gtk/print_mswin.c
@@ -1,7 +1,7 @@
/* print_mswin.c
* Printing support for MSWindows
*
- * $Id: print_mswin.c,v 1.5 2002/09/09 20:16:11 guy Exp $
+ * $Id: print_mswin.c,v 1.6 2003/10/07 03:09:50 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -30,7 +30,8 @@
#include <string.h>
#include <stdio.h>
-#include "windows.h"
+#include <windows.h>
+#include <commdlg.h>
#ifdef __WIN32__
#include <winspool.h>