summaryrefslogtreecommitdiffstats
path: root/src/Common
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-08-18 22:15:54 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-08-18 22:15:54 +0200
commit28f25233eeadad268e09d873429bd6f484d0bc86 (patch)
tree7a77f5bd51e3ecd1e03b4d8ade981a076c3d84e4 /src/Common
parentdb5ad2e09a6b38e841463dbe7eb076492b62c948 (diff)
downloadmad-28f25233eeadad268e09d873429bd6f484d0bc86.tar
mad-28f25233eeadad268e09d873429bd6f484d0bc86.zip
Anpassungen fuer MinGW
Diffstat (limited to 'src/Common')
-rw-r--r--src/Common/XmlPacket.h1
-rw-r--r--src/Common/export.h15
2 files changed, 2 insertions, 14 deletions
diff --git a/src/Common/XmlPacket.h b/src/Common/XmlPacket.h
index 9d63075..1902f82 100644
--- a/src/Common/XmlPacket.h
+++ b/src/Common/XmlPacket.h
@@ -305,7 +305,6 @@ class MAD_COMMON_EXPORT XmlPacket {
typedef value_type *pointer;
typedef long difference_type;
-
private:
IteratorType it;
diff --git a/src/Common/export.h b/src/Common/export.h
index 71207d3..532f3eb 100644
--- a/src/Common/export.h
+++ b/src/Common/export.h
@@ -1,22 +1,11 @@
#ifndef MAD_COMMON_EXPORT
# ifdef _WIN32
# ifdef MAD_COMMON_EXPORTS
-# define MAD_COMMON_EXPORT _declspec(dllexport)
+# define MAD_COMMON_EXPORT __declspec(dllexport)
# else
-# define MAD_COMMON_EXPORT _declspec(dllimport)
+# define MAD_COMMON_EXPORT __declspec(dllimport)
# endif
# else
# define MAD_COMMON_EXPORT
# endif
-
-# ifdef MAD_COMMON_EXPORTS
-# ifndef MAD_NET_EXPORTS
-# define MAD_NET_EXPORTS
-# endif
-# else
-# undef MAD_NET_EXPORTS
-# endif
-
-# include <Net/export.h>
-
#endif