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

Undocumented Visual C++

Rate me:
Please Sign up or sign in to vote.
4.91/5 (75 votes)
17 Sep 2000 746K   3.6K   278  
Spelunking in the Badlands of MSDEV
// OPENVC.idl : IDL source for OpenVC.dll
//

// This file will be processed by the MIDL tool to
// produce the type library (ComVC.tlb) and marshalling code.

import "oaidl.idl";
import "ocidl.idl";

[
	uuid(47679352-fe44-4441-a5b5-ebe5ad6dd6b7),
	version(1.0),
	helpstring("OPENVC 1.0 Type Library")
]
library OPENVCLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(8c6fa527-fde6-4a0f-ba05-51b3800a6280),
		oleautomation,
		dual
	]
	interface ICommands : IDispatch
	{
		[id(1), helpstring("method DeleteNCB")] 
		HRESULT DeleteNCB();

		[id(2), helpstring("method Show Innards")] 
		HRESULT ShowInnards();

	};

	[
		uuid(731bdf3a-1f53-4f90-becf-7f9a904da5d0)
	]
	coclass Commands
	{
		[default] interface ICommands;
	};

	[
		uuid(7c4b79a1-0eab-4cab-9c30-c2d7a38eacdf)
	]
	coclass OpenVC
	{
		[default] interface IUnknown;
	}

};

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

Comments and Discussions