summaryrefslogtreecommitdiff
path: root/gtk/gtkprintoperation-win32.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-08-04 23:49:15 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-08-04 23:49:15 +0000
commit9be838203829f858e8ca84fe299a1608b77a5c7b (patch)
tree474e45066d06da66c652c201ee9dc645a9cd2ff9 /gtk/gtkprintoperation-win32.c
parenta1e3946f58ff20011727a26335e7085eff605a99 (diff)
downloadgtk+-9be838203829f858e8ca84fe299a1608b77a5c7b.tar.gz
Don't need to declare IPrintDialogCallback with mingw64 either. It seems
2008-08-05 Tor Lillqvist <tml@novell.com> * gtk/gtkprintoperation-win32.c: Don't need to declare IPrintDialogCallback with mingw64 either. It seems to come with newer versions of the headers. svn path=/trunk/; revision=21001
Diffstat (limited to 'gtk/gtkprintoperation-win32.c')
-rw-r--r--gtk/gtkprintoperation-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintoperation-win32.c b/gtk/gtkprintoperation-win32.c
index 148ef751eb..9e0227156d 100644
--- a/gtk/gtkprintoperation-win32.c
+++ b/gtk/gtkprintoperation-win32.c
@@ -72,7 +72,7 @@ static void win32_poll_status (GtkPrintOperation *op);
static const GUID myIID_IPrintDialogCallback = {0x5852a2c3,0x6530,0x11d1,{0xb6,0xa3,0x0,0x0,0xf8,0x75,0x7b,0xf9}};
-#ifndef _MSC_VER
+#if !defined (_MSC_VER) && !defined (MINGW64)
#undef INTERFACE
#define INTERFACE IPrintDialogCallback
DECLARE_INTERFACE_ (IPrintDialogCallback, IUnknown)