home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / H / OS2.H < prev    next >
C/C++ Source or Header  |  1995-08-30  |  2KB  |  57 lines

  1. /*static char *SCCSID = "@(#)os2.h    6.6 92/03/15";*/
  2. /****************************** Module Header ******************************\
  3. *                                                                          *
  4. * Copyright (c) 1987  - 1992 IBM Corporation                               *
  5. *                                                                          *
  6. * Module Name: OS2.H                                                       *
  7. *                                                                          *
  8. * This is the top level include file that includes all the files necessary *
  9. * for writing an OS/2 application.                                         *
  10. *                                                                          *
  11. \***************************************************************************/
  12.  
  13. #if __IBMC__ || __IBMCPP__
  14. #pragma info( none )
  15.    #ifndef __CHKHDR__
  16.       #pragma info( none )
  17.    #endif
  18. #pragma info( restore )
  19. #endif
  20. #ifdef __cplusplus
  21.       extern "C" {
  22. #endif
  23.  
  24. #ifndef __OS2_H__
  25.  
  26. /* NOINC */
  27. #define __OS2_H__
  28. /* INC */
  29.  
  30. #define OS2_INCLUDED
  31.  
  32. /* Common definitions */
  33. #include <os2def.h>
  34.  
  35. /* OS/2 Base Include File */
  36. #ifndef INCL_NOBASEAPI
  37.    #include <bse.h>
  38. #endif /* INCL_NOBASEAPI */
  39.  
  40. /* OS/2 Presentation Manager Include File */
  41. #ifndef INCL_NOPMAPI
  42.    #include <pm.h>
  43. #endif /* INCL_NOPMAPI */
  44.  
  45. #endif /* __OS2__ */
  46.  
  47. #ifdef __cplusplus
  48.         }
  49. #endif
  50. #if __IBMC__ || __IBMCPP__
  51. #pragma info( none )
  52.    #ifndef __CHKHDR__
  53.       #pragma info( restore )
  54.    #endif
  55. #pragma info( restore )
  56. #endif
  57.