path.h 271 B

1234567891011121314151617181920212223
  1. #ifndef AFUN_PATH_H
  2. #define AFUN_PATH_H
  3. /* 路径工具 */
  4. #ifdef WIN32
  5. #define SEP "\\"
  6. #define SEP_CH '\\'
  7. #else
  8. #define SEP "/"
  9. #define SEP_CH '/'
  10. #endif
  11. #ifdef aFunWIN32
  12. #define SHARED_MARK ".dll"
  13. #else
  14. #define SHARED_MARK ".so"
  15. #endif
  16. #endif //AFUN_PATH_H