home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / rawed1_1.zip / RAWEDIT.H < prev    next >
C/C++ Source or Header  |  1996-06-08  |  830b  |  32 lines

  1. /* -- rawedit.h  Provide a portable way to access screen -- */
  2.  
  3. /* ----------------
  4. ** NOTE!
  5. ** To select the target platform, the corresponding MACRO must be defined
  6. ** in the make file.  Example:  __AIX__ must be defined in the compile statement** when creating the executable for IBM's AIX.
  7. */
  8.  
  9. #ifdef __AIX__
  10.   #include "aix.io"             /* IBM's AIX (Unix)      */
  11. #endif
  12.  
  13. #ifdef __HP_UX__
  14.   #include "hpux.io"            /* HP's HP-UX (Unix)     */
  15. #endif
  16.  
  17. #ifdef __SOLARIS__
  18.   #include "solaris.io"         /* Sun Sparc's Solaris (Unix) */
  19. #endif
  20.  
  21. #ifdef __LINUX__
  22.   #include "linux.io"           /* Linux for Intel-based system */
  23. #endif
  24.  
  25. #ifdef __WATCOM10__ 
  26.   #include "watcom10.io"        /* Watcom C++ 10.0 for DOS */
  27. #endif
  28.  
  29. #ifdef __TURBO_CPP__
  30.   #include "tcc1.io"            /* Turbo C++ 1.0 for DOS */
  31. #endif
  32.