testDynload.h 288 B

123456789
  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. #ifdef _WIN32
  4. # define DL_EXPORT __declspec(dllexport)
  5. #else
  6. # define DL_EXPORT
  7. #endif
  8. extern DL_EXPORT int TestDynamicLoaderData;