home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warphead.zip / H / BSE.H < prev    next >
C/C++ Source or Header  |  1997-08-17  |  2KB  |  75 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. #if __IBMC__ || __IBMCPP__
  24. #pragma info( none )
  25.    #ifndef __CHKHDR__
  26.       #pragma info( none )
  27.    #endif
  28. #pragma info( restore )
  29. #endif
  30. #ifdef __cplusplus
  31.       extern "C" {
  32. #endif
  33.  
  34. #ifndef __BSE__
  35. /* NOINC */
  36. #define __BSE__
  37. /* INC */
  38.  
  39. #define INCL_BASEINCLUDED
  40.  
  41. /* if INCL_BASE defined then define all the symbols */
  42.  
  43. #ifdef INCL_BASE
  44.    #define INCL_DOS
  45.    #define INCL_SUB
  46.    #define INCL_DOSERRORS
  47. #endif /* INCL_BASE */
  48.  
  49. #include <bsedos.h>       /* Base definitions */
  50.  
  51.  
  52. #ifdef INCL_DOSDEVIOCTL
  53.    #include <bsedev.h>    /* Structures and constants for DosDevIOCtl */
  54. #endif /* INCL_DOSDEVIOCTL */
  55.  
  56. #include <bsesub.h>       /* VIO/KBD/MOU definitions */
  57. #include <bseerr.h>       /* Base error code definitions */
  58.  
  59. #ifdef INCL_ORDINALS
  60. #include <bseord.h>     /* ordinals */
  61. #endif /* INCL_ORDINALS */
  62.  
  63. #endif /* __BSE__ */
  64.  
  65. #ifdef __cplusplus
  66.         }
  67. #endif
  68. #if __IBMC__ || __IBMCPP__
  69. #pragma info( none )
  70.    #ifndef __CHKHDR__
  71.       #pragma info( restore )
  72.    #endif
  73. #pragma info( restore )
  74. #endif
  75.