summaryrefslogtreecommitdiff
path: root/Source/7zip/Common/MyUnknown.h
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2018-03-31 20:38:02 +0200
committerDidier Raboud <odyx@debian.org>2018-03-31 20:38:02 +0200
commitec6389c74b951dcbbcd8b6d3892470b06504737a (patch)
treee03a7e9bf0d31c7c64055115af1b1374b5a0b5b9 /Source/7zip/Common/MyUnknown.h
Import Upstream version 2.06
Diffstat (limited to 'Source/7zip/Common/MyUnknown.h')
-rw-r--r--Source/7zip/Common/MyUnknown.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/Source/7zip/Common/MyUnknown.h b/Source/7zip/Common/MyUnknown.h
new file mode 100644
index 0000000..fa61c66
--- /dev/null
+++ b/Source/7zip/Common/MyUnknown.h
@@ -0,0 +1,25 @@
+// MyUnknown.h
+
+#ifndef __MYUNKNOWN_H
+#define __MYUNKNOWN_H
+
+#ifdef WIN32
+
+// #include <guiddef.h>
+#ifdef _WIN32_WCE
+#if (_WIN32_WCE > 300)
+#include <basetyps.h>
+#else
+#define MIDL_INTERFACE(x) struct
+#endif
+#else
+#include <basetyps.h>
+#endif
+
+#include <unknwn.h>
+
+#else
+#include "MyWindows.h"
+#endif
+
+#endif