13,000
回編集
157行目: | 157行目: | ||
#include <QtCore/qglobal.h> | #include <QtCore/qglobal.h> | ||
# | #if defined(Q_OS_WIN) // Windows | ||
#if defined(UTILS_LIBRARY) | #if defined(UTILS_LIBRARY) | ||
#define UTILS_EXPORT __declspec(dllexport) | #define UTILS_EXPORT __declspec(dllexport) | ||
163行目: | 163行目: | ||
#define UTILS_EXPORT | #define UTILS_EXPORT | ||
#endif | #endif | ||
#elif Q_OS_LINUX // Linux | #elif defined(Q_OS_LINUX) // Linux | ||
#if defined(UTILS_LIBRARY) | #if defined(UTILS_LIBRARY) | ||
#define UTILS_EXPORT Q_DECL_EXPORT | #define UTILS_EXPORT Q_DECL_EXPORT | ||
179行目: | 179行目: | ||
#include "Utils_global.h" | #include "Utils_global.h" | ||
#include <iostream> | #include <iostream> | ||
extern "C" UTILS_EXPORT void SampleHello(int count) | extern "C" UTILS_EXPORT void SampleHello(int count) |