home *** CD-ROM | disk | FTP | other *** search
- #ifndef _IDDECOMM_
- #define _IDDECOMM_
- /*******************************************************************************
- * FILE NAME: iddecomm.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the classes: *
- * IDDE *
- * *
- * COPYRIGHT: *
- * IBM Open Class Library *
- * (C) Copyright International Business Machines Corporation 1992, 1996 *
- * Licensed Material - Program-Property of IBM - All Rights Reserved. *
- * US Government Users Restricted Rights - Use, duplication, or disclosure *
- * restricted by GSA ADP Schedule Contract with IBM Corp. *
- * *
- *******************************************************************************/
- #include <ibase.hpp>
-
- #pragma pack(4)
-
-
- class IDDE : public IBase {
- typedef IBase
- Inherited;
- public:
- /*-------------------------- DDE Predefined Formats --------------------------*/
- typedef const char* Format;
-
- static Format const
- IC_IMPORTD textFormat,
- IC_IMPORTD displayTextFormat,
- IC_IMPORTD bitmapFormat,
- IC_IMPORTD displayBitmapFormat,
- IC_IMPORTD metafileFormat,
- IC_IMPORTD displayMetafileFormat,
- IC_IMPORTD metafilePictureFormat,
- IC_IMPORTD displayMetafilePictureFormat,
- IC_IMPORTD paletteFormat,
- IC_IMPORTD linkFormat,
- IC_IMPORTD sylkFormat,
- IC_IMPORTD dibFormat,
- IC_IMPORTD difFormat,
- IC_IMPORTD tiffFormat,
- IC_IMPORTD oemTextFormat;
-
- private:
- /*------------------------------ Hidden Members ------------------------------*/
- IDDE ( );
-
- }; // IDDE
-
-
- #pragma pack()
-
- #endif /* _IDDECOMM_ */
-