home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c034 / 7.ddi / INC11 / PM.H$ / PM.bin
Encoding:
Text File  |  1990-01-09  |  1.8 KB  |  53 lines

  1. /****************************** Module Header *****************************\
  2. *
  3. * Module Name: PM.H
  4. *
  5. * This is the top level include file for Presentation Manager
  6. *
  7. * Copyright (c) 1989-1990, Microsoft Corporation. All rights reserved.
  8. *
  9. * ==========================================================================
  10. *
  11. * The following symbols are used in this file for conditional sections.
  12. *
  13. *   INCL_PM               -  ALL of OS/2 Presentation Manager
  14. *   INCL_WIN              -  OS/2 Window Manager
  15. *   INCL_GPI              -  OS/2 GPI
  16. *   INCL_DEV              -  OS/2 Device Support
  17. *   INCL_AVIO             -  OS/2 Advanced VIO
  18. *   INCL_ORDERS           -  OS/2 Graphical Order Formats
  19. *   INCL_BITMAPFILEFORMAT -  OS/2 Bitmap File Format
  20. *   INCL_FONTFILEFORMAT   -  OS/2 Font File Format
  21. *   INCL_ERRORS           -  OS/2 Errors
  22. *
  23. \**************************************************************************/
  24.  
  25. /* if INCL_PM defined then define all the symbols */
  26. #ifdef INCL_PM
  27.     #define INCL_WIN
  28.     #define INCL_GPI
  29.     #define INCL_DEV
  30.     #define INCL_AVIO
  31.     #define INCL_PIC
  32.     #define INCL_ORDERS
  33.     #define INCL_BITMAPFILEFORMAT
  34.     #define INCL_FONTFILEFORMAT
  35.     #define INCL_ERRORS
  36. #endif /* INCL_PM */
  37.  
  38. #include <pmwin.h>     /* OS/2 Window Manager definitions */
  39. #include <pmgpi.h>     /* OS/2 GPI definitions */
  40. #include <pmdev.h>     /* OS/2 Device Context definitions */
  41. #ifdef INCL_AVIO
  42. #include <pmavio.h>    /* OS/2 AVIO definitions */
  43. #endif
  44. #ifdef INCL_ORDERS
  45. #include <pmord.h>     /* OS/2 Graphical Order Formats */
  46. #endif
  47. #ifdef INCL_BITMAPFILEFORMAT
  48. #include <pmbitmap.h>  /* OS/2 Bitmap File Format definition */
  49. #endif
  50. #ifdef INCL_FONTFILEFORMAT
  51. #include <pmfont.h>    /* OS/2 Font File Format definition */
  52. #endif
  53.