2013-08-29 12:28:09 +04:00
|
|
|
|
|
|
|
#ifndef SYSTEMLIB_H
|
|
|
|
#define SYSTEMLIB_H
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
2016-05-16 17:34:04 +03:00
|
|
|
#define systemlib_EXPORT __declspec(dllexport)
|
2013-08-29 12:28:09 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#define systemlib_EXPORT
|
2013-08-29 12:28:09 +04: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
|