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