main.c 138 B

12345678910
  1. #ifdef _MSC_VER
  2. #define testEXPORT __declspec(dllexport)
  3. #else
  4. #define testEXPORT
  5. #endif
  6. testEXPORT int pouet() {
  7. return prepouet();
  8. }