⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mycom.idl

📁 这是一个数字图像处理的matlab仿真程序
💻 IDL
字号:
// MyCom.idl : IDL source for MyCom.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(A21A8C41-1266-11D4-A324-0040F6D487D9),
		dual,
		helpstring("IMyCom Interface"),
		pointer_default(unique)
	]
	interface IMyCom : IUnknown
	{
		[propget, helpstring("property Value")] HRESULT Value([out, retval] long *pVal);
		[propput, helpstring("property Value")] HRESULT Value([in] long newVal);
		[helpstring("method Raise")] HRESULT Raise(long Value);
	};


[
	uuid(A21A8C43-1266-11D4-A324-0040F6D487D9),
	version(1.0),
	helpstring("MyCom 1.0 Type Library")
]
library MyComLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(A21A8C42-1266-11D4-A324-0040F6D487D9),
		helpstring("MyCom Class")
	]
	coclass MyCom
	{
		[default] interface IMyCom;
	};
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -