From: <sp...@us...> - 2004-03-10 12:07:26
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5888 Modified Files: Export.h Log Message: Added Symbian (EPOC32) support Index: Export.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/Export.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Export.h 11 Feb 2004 12:29:29 -0000 1.3 --- Export.h 10 Mar 2004 11:41:37 -0000 1.4 *************** *** 20,23 **** --- 20,30 ---- # define RTK_API __declspec(dllimport) # endif + #elif defined(__EPOC32__) + # include <e32def.h> + # ifdef RTK_EXPORTS + # define RTK_API IMPORT_C + # else + # define RTK_API EXPORT_C + # endif #else # define RTK_API |