home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / os2tk21j / cplus / os2h / bse.h__ / bse.h
Encoding:
C/C++ Source or Header  |  1993-04-29  |  1.7 KB  |  69 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. #pragma info( none )
  24.    #ifndef __CHKHDR__
  25.       #pragma info( none )
  26.    #endif
  27. #pragma info( restore )
  28. #ifdef __cplusplus
  29.       extern "C" {
  30. #endif
  31.  
  32. #ifndef __BSE__
  33. #define __BSE__
  34.  
  35. #define INCL_BASEINCLUDED
  36.  
  37. /* if INCL_BASE defined then define all the symbols */
  38.  
  39. #ifdef INCL_BASE
  40.    #define INCL_DOS
  41.    #define INCL_SUB
  42.    #define INCL_DOSERRORS
  43. #endif /* INCL_BASE */
  44.  
  45. #include <bsedos.h>       /* Base definitions */
  46.  
  47.  
  48. #ifdef INCL_DOSDEVIOCTL
  49.    #include <bsedev.h>    /* Structures and constants for DosDevIOCtl */
  50. #endif /* INCL_DOSDEVIOCTL */
  51.  
  52. #include <bsesub.h>       /* VIO/KBD/MOU definitions */
  53. #include <bseerr.h>       /* Base error code definitions */
  54.  
  55. #ifdef INCL_ORDINALS
  56. #include <bseord.h>     /* ordinals */
  57. #endif /* INCL_ORDINALS */
  58.  
  59. #endif /* __BSE__ */
  60.  
  61. #ifdef __cplusplus
  62.         }
  63. #endif
  64. #pragma info( none )
  65.    #ifndef __CHKHDR__
  66.       #pragma info( restore )
  67.    #endif
  68. #pragma info( restore )
  69.