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

📄 simpleemailclient.idl

📁 email收发软件例子源代码
💻 IDL
字号:
// SimpleEmailClient.idl : IDL source for SimpleEmailClient.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(B3317880-B203-11D3-BFEF-0010E3B966CE),
		dual,
		helpstring("ISimpleEmailClientX Interface"),
		pointer_default(unique)
	]
	interface ISimpleEmailClientX : IDispatch
	{
		[id(1), helpstring("method SendEmail")] HRESULT SendEmail(BSTR BFrom, BSTR BTo, BSTR BSubject, BSTR BBody, BSTR BServerName);
		[propget, id(2), helpstring("property TimeOut (in milliseconds)")] HRESULT TimeOut([out, retval] long *pVal);
		[propput, id(2), helpstring("property TimeOut (in milliseconds)")] HRESULT TimeOut([in] long newVal);
	};

[
	uuid(B3317871-B203-11D3-BFEF-0010E3B966CE),
	version(1.0),
	helpstring("SimpleEmailClient 1.0 Type Library")
]
library SIMPLEEMAILCLIENTLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(B3317881-B203-11D3-BFEF-0010E3B966CE),
		helpstring("SimpleEmailClientX Class")
	]
	coclass SimpleEmailClientX
	{
		[default] interface ISimpleEmailClientX;
	};
};

⌨️ 快捷键说明

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