Click here to Skip to main content
15,891,136 members
Articles / Programming Languages / C++

Beginner's Tutorial: Calling Visual Basic ActiveX DLLs from Visual C++

Rate me:
Please Sign up or sign in to vote.
4.80/5 (36 votes)
18 Nov 19997 min read 618.9K   2.8K   103  
/* 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 Wed Nov 03 20:10:20 1999
 */
/* Compiler settings for vbTestCOM.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 LIBID_vbTestCOM = {0x52D2F0D6,0x4BEF,0x4E69,{0xB3,0x70,0x5C,0x94,0xA3,0x89,0xD9,0x16}};


const IID IID__clsVBTestClass = {0xC8771967,0xF992,0x447A,{0xB4,0xA0,0x08,0x38,0x94,0xE6,0x32,0x6E}};


const CLSID CLSID_clsVBTestClass = {0x46F6C251,0xC914,0x4353,{0xA2,0xD2,0xBF,0x6A,0xF0,0x58,0xF4,0x54}};


#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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions