Revision: 1550
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1550&view=rev
Author: roman_yakovenko
Date: 2009-01-07 22:25:48 +0000 (Wed, 07 Jan 2009)
Log Message:
-----------
adding missing file
Added Paths:
-----------
pygccxml_dev/unittests/data/binary_parsers/libconfig.h
Added: pygccxml_dev/unittests/data/binary_parsers/libconfig.h
===================================================================
--- pygccxml_dev/unittests/data/binary_parsers/libconfig.h (rev 0)
+++ pygccxml_dev/unittests/data/binary_parsers/libconfig.h 2009-01-07 22:25:48 UTC (rev 1550)
@@ -0,0 +1,15 @@
+#if defined _WIN32 || defined __CYGWIN__
+ #define IMPORT_SYMBOL __declspec(dllimport)
+ #define EXPORT_SYMBOL __declspec(dllexport)
+ #define PRIVATE_SYMBOL
+#else
+ #if __GNUC__ >= 4
+ #define IMPORT_SYMBOL __attribute__ ((visibility("default")))
+ #define EXPORT_SYMBOL __attribute__ ((visibility("default")))
+ #define PRIVATE_SYMBOL __attribute__ ((visibility("hidden")))
+ #else
+ #define IMPORT_SYMBOL
+ #define EXPORT_SYMBOL
+ #define PRIVATE_SYMBOL
+ #endif
+#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|