home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / UnAce.lha / Src / Os.h < prev    next >
C/C++ Source or Header  |  1997-12-10  |  386b  |  27 lines

  1. #ifndef __os_h
  2. #define __os_h
  3.  
  4.  
  5. #if defined(AMIGA)
  6.   #define DIRSEP '/'
  7.   #define HI_LO_BYTE_ORDER
  8. #endif
  9.  
  10. #if defined(DOS) || defined(WIN32) || defined(WIN16)
  11.   #define DIRSEP '\\'
  12.   #define LO_HI_BYTE_ORDER
  13. #endif
  14.  
  15. #if defined(OS2)
  16.   #define DIRSEP '\\'
  17.   #define LO_HI_BYTE_ORDER
  18. #endif
  19.  
  20. #if defined(UNIX)
  21.   #define DIRSEP '/'
  22.   #define HI_LO_BYTE_ORDER
  23. #endif
  24.  
  25.  
  26. #endif /* __os_h */
  27.