Click here to Skip to main content
15,885,435 members
Articles / Desktop Programming / ATL

Pluggable Components using Component Categories - Part II

Rate me:
Please Sign up or sign in to vote.
5.00/5 (10 votes)
18 Sep 20037 min read 82.4K   1.1K   46  
An article on using component categories to create pluggable components
/* this file contains the actual definitions of */
/* the IIDs and CLSIDs */

/* link this file in with the server and any clients */


/* File created by MIDL compiler version 5.01.0164 */
/* at Thu Jun 19 15:01:19 2003
 */
/* Compiler settings for ..\Communications.idl:
    Os (OptLev=s), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )
#ifdef __cplusplus
extern "C"{
#endif 


#ifndef __IID_DEFINED__
#define __IID_DEFINED__

typedef struct _IID
{
    unsigned long x;
    unsigned short s1;
    unsigned short s2;
    unsigned char  c[8];
} IID;

#endif // __IID_DEFINED__

#ifndef CLSID_DEFINED
#define CLSID_DEFINED
typedef IID CLSID;
#endif // CLSID_DEFINED

const IID IID_ICommunication = {0x5BCB2257,0x94DF,0x48ce,{0xAC,0x2B,0x17,0x86,0xDE,0xFD,0x38,0x31}};


const IID LIBID_COMMUNICATIONSLib = {0x01E10F11,0x5209,0x4b2c,{0x9A,0x3B,0x2A,0x8A,0xD4,0x74,0x13,0xCB}};


const IID DIID__ICommunicationEvents = {0xBB8E1BD4,0x1C7C,0x4bc9,{0xAD,0x6D,0x3A,0x91,0x9E,0xA0,0x49,0x7D}};


const CLSID CLSID_Communication = {0x17CC2111,0x9772,0x4F9C,{0x8E,0xDB,0x7F,0xD2,0xA8,0x2F,0x17,0x72}};


#ifdef __cplusplus
}
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I started programming at 15 with a TI-82 calclator in Z80 assembly (oh, those were the days . . .) I am pretty much a self taught programmer. I've taught myself Visual Basic, C/C++, Java, and am currently working on C#. I also like to experiment with system administration and security issues, and occassionally I work on web design. For the last 4 years, I have worked for Leitch, Inc. as a Software Engineer and graduated from Old Dominion University with bachelor's degrees in Computer Science, Mathematics, and Business Management in December of 2004.

Comments and Discussions