home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / os2tk21j / c / os2h / bse.h__ / bse.h
Encoding:
C/C++ Source or Header  |  1993-03-12  |  1.7 KB  |  67 lines

  1. /*static char *SCCSID = "@(#)bse.h    6.8 92/03/15";*/
  2. /****************************** Module Header ******************************\
  3. *
  4. * Module Name: BSE.H
  5. *
  6. * This file includes the definitions necessary for writing Base OS/2 applications.
  7. *
  8. * Copyright (c) 1987, 1992  IBM Corporation
  9. *
  10. *
  11. *
  12. * ===========================================================================
  13. *
  14. * The following symbols are used in this file for conditional sections.
  15. *
  16. *   INCL_BASE      -  ALL of OS/2 Base
  17. *   INCL_DOS       -  OS/2 DOS Kernel
  18. *   INCL_SUB       -  OS/2 VIO/KBD/MOU
  19. *   INCL_DOSERRORS -  OS/2 Errors         - only included if symbol defined
  20. *   INCL_ORDINALS  -  OS/2 Ordinals       - only included if symbol defined
  21. \***************************************************************************/
  22.  
  23. #ifdef __IBMC__
  24. #pragma checkout( suspend )
  25.    #ifndef __CHKHDR__
  26.       #pragma checkout( suspend )
  27.    #endif
  28. #pragma checkout( resume )
  29. #endif
  30.  
  31. #ifndef __BSE__
  32. #define __BSE__
  33.  
  34. #define INCL_BASEINCLUDED
  35.  
  36. /* if INCL_BASE defined then define all the symbols */
  37.  
  38. #ifdef INCL_BASE
  39.    #define INCL_DOS
  40.    #define INCL_SUB
  41.    #define INCL_DOSERRORS
  42. #endif /* INCL_BASE */
  43.  
  44. #include <bsedos.h>       /* Base definitions */
  45.  
  46.  
  47. #ifdef INCL_DOSDEVIOCTL
  48.    #include <bsedev.h>    /* Structures and constants for DosDevIOCtl */
  49. #endif /* INCL_DOSDEVIOCTL */
  50.  
  51. #include <bsesub.h>       /* VIO/KBD/MOU definitions */
  52. #include <bseerr.h>       /* Base error code definitions */
  53.  
  54. #ifdef INCL_ORDINALS
  55. #include <bseord.h>     /* ordinals */
  56. #endif /* INCL_ORDINALS */
  57.  
  58. #endif /* __BSE__ */
  59.  
  60. #ifdef __IBMC__
  61. #pragma checkout( suspend )
  62.    #ifndef __CHKHDR__
  63.       #pragma checkout( resume )
  64.    #endif
  65. #pragma checkout( resume )
  66. #endif
  67.