23 lines
362 B
C
Raw Normal View History

2014-08-03 19:52:23 +02:00
#ifndef SYSTEMLIB_H
#define SYSTEMLIB_H
#if defined(_WIN32) || defined(__CYGWIN__)
2016-07-09 11:21:54 +02:00
#define systemlib_EXPORT __declspec(dllexport)
2014-08-03 19:52:23 +02:00
#else
2016-07-09 11:21:54 +02:00
#define systemlib_EXPORT
2014-08-03 19:52:23 +02:00
#endif
struct systemlib_EXPORT SystemStruct
{
SystemStruct();
void someMethod()
{
int unused;
// unused warning not issued when this header is used as a system header.
}
};
#endif