1 #ifndef INCLUDED_SCDLLAPI_H 2 #define INCLUDED_SCDLLAPI_H 3 4 #include "sal/types.h" 5 6 #if defined(SC_DLLIMPLEMENTATION) 7 #define SC_DLLPUBLIC SAL_DLLPUBLIC_EXPORT 8 #else 9 #define SC_DLLPUBLIC SAL_DLLPUBLIC_IMPORT 10 #endif 11 #define SC_DLLPRIVATE SAL_DLLPRIVATE 12 13 #endif /* INCLUDED_SCDLLAPI_H */ 14