This commit is contained in:
Frank Seide 2014-11-04 11:43:42 -08:00
Родитель 5c942af8c4 75b923316e
Коммит 49e2eb4c11
3 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -11,6 +11,7 @@
// that uses this DLL. This way any other project whose source files include this file see
// DATAREADER_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef _WIN32
#if defined(DATAREADER_EXPORTS)
#define DATAREADER_API __declspec(dllexport)
#elif defined(DATAREADER_LOCAL)
@ -18,6 +19,9 @@
#else
#define DATAREADER_API __declspec(dllimport)
#endif
#else
#define DATAREADER_API
#endif
#include "Matrix.h"
#include <map>
#include <string>

Просмотреть файл

@ -11,6 +11,7 @@
// that uses this DLL. This way any other project whose source files include this file see
// DATAWRITER_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef _WIN32
#if defined(DATAWRITER_EXPORTS)
#define DATAWRITER_API __declspec(dllexport)
#elif defined(DATAWRITER_LOCAL)
@ -18,6 +19,9 @@
#else
#define DATAWRITER_API __declspec(dllimport)
#endif
#else
#define DATAWRITER_API
#endif
#include "Matrix.h"
#include <map>
#include <string>

Просмотреть файл

@ -4,11 +4,15 @@
// that uses this DLL. This way any other project whose source files include this file see
// PTASKHOST_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef _WIN32
#ifdef PTASKHOST_EXPORTS
#define PTASKHOST_API __declspec(dllexport)
#else
#define PTASKHOST_API __declspec(dllimport)
#endif
#else
#define PTASKHOST_API
#endif
#include "PTask.h"
@ -24,4 +28,4 @@ extern "C" {
PTASKHOST_API void __stdcall DummyFunction();
}
#endif
#endif