aboutsummaryrefslogtreecommitdiffstats
path: root/common/os/w32tiger.c
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2011-10-12 20:00:55 +0000
committerDRC <dcommander@users.sourceforge.net>2011-10-12 20:00:55 +0000
commit3080ec406527bc274969f2b7a25fcefc4520ece5 (patch)
tree5ac580505600dbb25cf879191353308ba3d84398 /common/os/w32tiger.c
parente8b16be85646641d80ee4cd7c5a9bda90bbbc0a4 (diff)
downloadtigervnc-3080ec406527bc274969f2b7a25fcefc4520ece5.tar.gz
tigervnc-3080ec406527bc274969f2b7a25fcefc4520ece5.zip
Enable WinVNC build with MinGW and MinGW64
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4723 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/os/w32tiger.c')
-rw-r--r--common/os/w32tiger.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/common/os/w32tiger.c b/common/os/w32tiger.c
new file mode 100644
index 00000000..3427cf48
--- /dev/null
+++ b/common/os/w32tiger.c
@@ -0,0 +1,33 @@
+/* Copyright (C) 2011 TigerVNC Team. All Rights Reserved.
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ * USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifdef WIN32
+
+#define INITGUID
+#include <basetyps.h>
+
+#ifndef HAVE_ACTIVE_DESKTOP_L
+DEFINE_GUID(CLSID_ActiveDesktop,0x75048700L,0xEF1F,0x11D0,0x98,0x88,0x00,0x60,0x97,0xDE,0xAC,0xF9);
+DEFINE_GUID(IID_IActiveDesktop,0xF490EB00L,0x1240,0x11D1,0x98,0x88,0x00,0x60,0x97,0xDE,0xAC,0xF9);
+#endif
+
+#endif /* WIN32 */