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

📄 chapter5_aggregate.idl

📁 ATL开发指南PDF格式
💻 IDL
字号:
// Chapter5_Aggregate.idl : IDL source for Chapter5_Aggregate.dll
//

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

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

	[
		uuid(380F79F9-4098-11D1-883A-444553540000),	
		helpstring("IAdvancedMath Interface"),
		pointer_default(unique)
	]
	interface IAdvancedMath : IUnknown
	{
		[helpstring("method Factorial")] HRESULT Factorial( short sOp, long* plResult );
		[helpstring("method Fibonacci")] HRESULT Fibonacci( short sOp, long* plResult );
	};
[
	uuid(380F79EC-4098-11D1-883A-444553540000),
	version(1.0),
	helpstring("Chapter5_Aggregate 1.0 Type Library")
]
library CHAPTER5_AGGREGATELib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(380F79FA-4098-11D1-883A-444553540000),
		helpstring("AdvancedMath Class")
	]
	coclass AdvancedMath
	{
		[default] interface IAdvancedMath;
	};
};

⌨️ 快捷键说明

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