The R Project SVN R

Rev

Rev 82430 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 82430 Rev 84952
Line 32... Line 32...
32
#undef LibImport
32
#undef LibImport
33
#undef LibExport
33
#undef LibExport
34
 
34
 
35
#ifdef _WIN32 /* _WIN32 as does not depend on config.h */
35
#ifdef _WIN32 /* _WIN32 as does not depend on config.h */
36
#define LibImport __declspec(dllimport)
36
#define LibImport __declspec(dllimport)
-
 
37
/* exporting is now done via .def file in R */
37
#define LibExport __declspec(dllexport)
38
#define LibExport /* __declspec(dllexport) */
38
#else
39
#else
39
#define LibImport
40
#define LibImport
40
#define LibExport
41
#define LibExport
41
#endif
42
#endif
42
 
43