19 lines
409 B
C
19 lines
409 B
C
#ifndef LOGIN_GLOBAL_H
|
|
#define LOGIN_GLOBAL_H
|
|
|
|
#if defined(_WIN32)
|
|
#if defined(LOGIN_LIBRARY)
|
|
#define LOGIN_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define LOGIN_EXPORT __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#if defined(LOGIN_LIBRARY)
|
|
#define LOGIN_EXPORT __attribute__((visibility("default")))
|
|
#else
|
|
#define LOGIN_EXPORT
|
|
#endif
|
|
#endif
|
|
|
|
#endif // LOGIN_GLOBAL_H
|