foo.cxx 212 B

12345678910
  1. #include <stdio.h>
  2. #if defined(_WIN32) && defined(foo_EXPORTS)
  3. # define CM_TEST_LIB_EXPORT __declspec( dllexport )
  4. #else
  5. # define CM_TEST_LIB_EXPORT
  6. #endif
  7. CM_TEST_LIB_EXPORT void foo()
  8. {
  9. printf("foo\n");
  10. }