diff options
author | Tor Lillqvist <tml@novell.com> | 2009-03-17 12:58:40 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2009-03-17 12:58:40 +0000 |
commit | f3bcc940a6caed0970ab8847012fe9600cd0628a (patch) | |
tree | 25bdfd331c1f2bc8d1b93fa87117e9347282aee4 /gtk/gtkprintoperation-win32.c | |
parent | e944e671305f64ab05c09851698e397b4fb79ef9 (diff) | |
download | gtk+-f3bcc940a6caed0970ab8847012fe9600cd0628a.tar.gz |
Newer mingw-w64 uses an underscore-prefixed identification macro.
2009-03-17 Tor Lillqvist <tml@novell.com>
* gtk/gtkprintoperation-win32.c: Newer mingw-w64 uses an
underscore-prefixed identification macro.
svn path=/trunk/; revision=22561
Diffstat (limited to 'gtk/gtkprintoperation-win32.c')
-rw-r--r-- | gtk/gtkprintoperation-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintoperation-win32.c b/gtk/gtkprintoperation-win32.c index 9e0227156d..7a9b559a93 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}}; -#if !defined (_MSC_VER) && !defined (MINGW64) +#if !defined (_MSC_VER) && !defined (MINGW64) && !defined (__MINGW64) #undef INTERFACE #define INTERFACE IPrintDialogCallback DECLARE_INTERFACE_ (IPrintDialogCallback, IUnknown) |