systemlib.h 215 B

12345678910111213141516171819
  1. #ifndef SYSTEMLIB_H
  2. #define SYSTEMLIB_H
  3. #ifdef _WIN32
  4. __declspec(dllexport)
  5. #endif
  6. int systemlib();
  7. #ifdef _WIN32
  8. __declspec(dllexport)
  9. #endif
  10. int unusedFunc()
  11. {
  12. int unused;
  13. return systemlib();
  14. }
  15. #endif