home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / os2tk21j / c / os2h / os2.h__ / os2.h
Encoding:
C/C++ Source or Header  |  1993-03-12  |  1.5 KB  |  48 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. #ifdef __IBMC__
  14. #pragma checkout( suspend )
  15.    #ifndef __CHKHDR__
  16.       #pragma checkout( suspend )
  17.    #endif
  18. #pragma checkout( resume )
  19. #endif
  20.  
  21. #ifndef __OS2_H__
  22. #define __OS2_H__
  23.  
  24. #define OS2_INCLUDED
  25.  
  26. /* Common definitions */
  27. #include <os2def.h>
  28.  
  29. /* OS/2 Base Include File */
  30. #ifndef INCL_NOBASEAPI
  31.    #include <bse.h>
  32. #endif /* INCL_NOBASEAPI */
  33.  
  34. /* OS/2 Presentation Manager Include File */
  35. #ifndef INCL_NOPMAPI
  36.    #include <pm.h>
  37. #endif /* INCL_NOPMAPI */
  38.  
  39. #endif /* __OS2__ */
  40.  
  41. #ifdef __IBMC__
  42. #pragma checkout( suspend )
  43.    #ifndef __CHKHDR__
  44.       #pragma checkout( resume )
  45.    #endif
  46. #pragma checkout( resume )
  47. #endif
  48.