home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / TOOLS / ACE11B / UNACESRC / OS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-05  |  412 b   |  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(WINNT) || 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.