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

📄 aspcom.idl

📁 随着计算机信息技术的飞速发展
💻 IDL
字号:
// ASPCOM.idl : IDL source for ASPCOM.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(02CB044D-0361-11D8-8B2A-000AEB056EB7),
		dual,
		helpstring("ICOMINASP Interface"),
		pointer_default(unique)
	]
	interface ICOMINASP : IDispatch
	{
		[propget, id(1), helpstring("property par")] HRESULT FirstPar([out, retval] BSTR *pVal);
		[propput, id(1), helpstring("property par")] HRESULT FirstPar([in] BSTR newVal);
		[propget, id(2), helpstring("property par2")] HRESULT SecondPar([out, retval] BSTR *pVal);
		[propput, id(2), helpstring("property par2")] HRESULT SecondPar([in] BSTR newVal);
		[id(3), helpstring("method StrCat")] HRESULT StrCat([out,retval] BSTR* ret);
 		[id(6), helpstring("method ProcessPage")] HRESULT ProcessPage();
		};

[
	uuid(02CB0441-0361-11D8-8B2A-000AEB056EB7),
	version(1.0),
	helpstring("ASPCOM 1.0 Type Library")
]
library ASPCOMLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(02CB044E-0361-11D8-8B2A-000AEB056EB7),
		helpstring("COMINASP Class")
	]
	coclass COMINASP
	{
		[default] interface ICOMINASP;
	};
};

⌨️ 快捷键说明

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