home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / txcl552 / inc / tcxl_os.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-22  |  1.3 KB  |  32 lines

  1. /*=====[ The TesSeRact(TM) CXL User Interface Development System ]======*
  2.  | Copyright (c) 1987-1991, Innovative Data Concepts, Inc.
  3.  | All Rights Reserved.
  4.  |
  5.  | This Library is part of IDC's TesSeRact Development Tools product
  6.  | line. For information about other IDC products, call 1-215-443-9705.
  7.  *-V--------------------------------------------------------------------*
  8.  | $Header:   tcxl_os.h     552.2   21 Apr 1991 12:58:42  $
  9.  |
  10.  | $Log:   tcxl_os.h    $
  11.  *-D--------------------------------------------------------------------*
  12.  | <TCXL_os.h> : TCXL multi-platform include file
  13.  *-N-----------------------[ Notes and Caveats ]------------------------*
  14.  |
  15.  *======================================================================*/
  16. #ifndef  _TCXL_os_
  17. #  define   _TCXL_os_ 1       /* only once! */
  18.  
  19. /*--------------------[ Supported compilers ]---------------------------*/
  20.  
  21. #  if defined(__TURBOC__) || defined(__ZTC__) || ((defined(M_I86) && !defined(M_XENIX)))
  22. #     include <TCXLdos.h>
  23. #  else
  24. #     if defined(__ATTUNIX__) || defined(__IBMAIX__)
  25. #        include <TCXLunx.h>
  26. #     else
  27. #        error Cannot determine Compiler type.  Cannot include OS include.
  28. #     endif
  29. #  endif
  30.  
  31. #endif   /*- _TCXL_os_ : End of TCXL_os.h ------------------------------*/
  32.