From: Christian P. <cp...@us...> - 2005-01-17 22:48:01
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1385/include/pclasses Modified Files: Export.h Log Message: Added macros for Util and Unicode module. Index: Export.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Export.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Export.h 17 Jan 2005 22:38:57 -0000 1.2 +++ Export.h 17 Jan 2005 22:47:42 -0000 1.3 @@ -77,6 +77,20 @@ # define PXML_EXPORT P_CXX_CLASS_IMPORT #endif +/* Util module */ +#ifdef PUTIL_BUILD +# define PUTIL_EXPORT P_CXX_CLASS_EXPORT +#else +# define PUTIL_EXPORT P_CXX_CLASS_IMPORT +#endif + +/* Unicode module */ +#ifdef PUNICODE_BUILD +# define PUNICODE_EXPORT P_CXX_CLASS_EXPORT +#else +# define PUNICODE_EXPORT P_CXX_CLASS_IMPORT +#endif + /* add more export macros for each module ... */ #endif |