foo.cxx 147 B

12345678
  1. #include <stdio.h>
  2. #ifdef _WIN32
  3. # define CM_TEST_LIB_EXPORT __declspec( dllexport )
  4. #endif
  5. CM_TEST_LIB_EXPORT void foo()
  6. {
  7. printf("foo\n");
  8. }