/usr/include/msn/libmsn_export.h is in libmsn-dev 4.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #ifndef _LIBMSN_EXPORT_H_
#define _LIBMSN_EXPORT_H_
/* export classes under windows
* visibility can be added later under all other systems
*/
#ifdef _MSC_VER
// we need to include windows.h here to not get compiler errors inside excpt.h (system header)
#include <windows.h>
#pragma warning( disable : 4251 )
#pragma warning( disable : 4996 )
#endif
#ifdef _WIN32
# ifdef msn_EXPORTS
# define LIBMSN_EXPORT __declspec(dllexport)
# else
# define LIBMSN_EXPORT __declspec(dllimport)
#endif
#else
# define LIBMSN_EXPORT
#endif
#endif // _LIBMSN_EXPORT_H_
|