config_iface.h 154 B

1234567891011121314
  1. #ifndef CONFIG_IFACE_H
  2. #define CONFIG_IFACE_H
  3. #ifdef _WIN32
  4. __declspec(dllexport)
  5. #endif
  6. int configUnusedFunc()
  7. {
  8. int unused;
  9. return 0;
  10. }
  11. #endif