1 /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying 2 file Copyright.txt or https://cmake.org/licensing#kwsys for details. */ 3 #include "testDynloadImpl.h" 4 5 #ifdef _WIN32 6 # define DL_EXPORT __declspec(dllexport) 7 #else 8 # define DL_EXPORT 9 #endif 10 TestLoad()11DL_EXPORT int TestLoad() 12 { 13 TestDynamicLoaderImplSymbolPointer(); 14 return TestDynamicLoaderImplData; 15 } 16