2017-04-14 19:02:05 +02:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing#kwsys for details. */
|
2008-10-12 18:41:06 +02:00
|
|
|
#ifdef _WIN32
|
2018-08-09 18:06:22 +02:00
|
|
|
# define DL_EXPORT __declspec(dllexport)
|
2008-10-12 18:41:06 +02:00
|
|
|
#else
|
2018-08-09 18:06:22 +02:00
|
|
|
# define DL_EXPORT
|
2008-10-12 18:41:06 +02:00
|
|
|
#endif
|
|
|
|
|
2022-03-29 21:10:50 +02:00
|
|
|
#include "testDynload.h"
|
|
|
|
|
2008-10-12 18:41:06 +02:00
|
|
|
DL_EXPORT int TestDynamicLoaderData = 0;
|
|
|
|
|
2020-08-30 11:54:41 +02:00
|
|
|
DL_EXPORT void TestDynamicLoaderSymbolPointer(void)
|
2008-10-12 18:41:06 +02:00
|
|
|
{
|
|
|
|
}
|