[wpdev-commits] wolfpack platform.h,1.19,1.20
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-10-21 16:27:21
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10159 Modified Files: platform.h Log Message: Preparations for DLL ai addons Index: platform.h =================================================================== RCS file: /cvsroot/wpdev/wolfpack/platform.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** platform.h 21 Oct 2004 12:11:18 -0000 1.19 --- platform.h 21 Oct 2004 16:27:07 -0000 1.20 *************** *** 95,98 **** --- 95,100 ---- typedef double RF64; + #if defined(Q_CC_MSVC) + #if defined WPIMPORT #define WPEXPORT __declspec(dllimport) *************** *** 101,103 **** --- 103,112 ---- #endif + #else + + #undef WPEXPORT + #define WPEXPORT + + #endif + #endif // __PLATFORM_H__ |