home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / iddecomm.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  2.1 KB  |  57 lines

  1. #ifndef _IDDECOMM_
  2. #define _IDDECOMM_
  3. /*******************************************************************************
  4. * FILE NAME: iddecomm.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IDDE                                                                     *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   IBM Open Class Library                                                     *
  12. *   (C) Copyright International Business Machines Corporation 1992, 1996       *
  13. *   Licensed Material - Program-Property of IBM - All Rights Reserved.         *
  14. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  15. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  16. *                                                                              *
  17. *******************************************************************************/
  18. #include <ibase.hpp>
  19.  
  20. #pragma pack(4)
  21.  
  22.  
  23. class IDDE : public IBase {
  24. typedef IBase
  25.   Inherited;
  26. public:
  27. /*-------------------------- DDE Predefined Formats --------------------------*/
  28. typedef const char* Format;
  29.  
  30. static Format const
  31.   IC_IMPORTD textFormat,
  32.   IC_IMPORTD displayTextFormat,
  33.   IC_IMPORTD bitmapFormat,
  34.   IC_IMPORTD displayBitmapFormat,
  35.   IC_IMPORTD metafileFormat,
  36.   IC_IMPORTD displayMetafileFormat,
  37.   IC_IMPORTD metafilePictureFormat,
  38.   IC_IMPORTD displayMetafilePictureFormat,
  39.   IC_IMPORTD paletteFormat,
  40.   IC_IMPORTD linkFormat,
  41.   IC_IMPORTD sylkFormat,
  42.   IC_IMPORTD dibFormat,
  43.   IC_IMPORTD difFormat,
  44.   IC_IMPORTD tiffFormat,
  45.   IC_IMPORTD oemTextFormat;
  46.  
  47. private:
  48. /*------------------------------ Hidden Members ------------------------------*/
  49.   IDDE ( );
  50.  
  51. }; // IDDE
  52.  
  53.  
  54. #pragma pack()
  55.  
  56. #endif /* _IDDECOMM_ */
  57.