prep.c 132 B

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