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

📄 trademgmt.idl

📁 Chapter08-Transactions.rar com example
💻 IDL
字号:
// TradeMgmt.idl : IDL source for TradeMgmt.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	
	[
		object,
		uuid(E494DFDF-1A97-4003-8106-5CCA512CC791),
		dual,
		helpstring("ITradeMgr Interface"),
		pointer_default(unique)
	]
	interface ITradeMgr : IDispatch
	{
		[id(1), helpstring("method BuyStocks")] HRESULT BuyStocks([in] BSTR bsClient, [in] BSTR bsSymbol, [in] long lShares);
	};

[
	uuid(CC2571AF-B231-49D3-952C-0C13BCF750D9),
	version(1.0),
	helpstring("TradeMgmt 1.0 Type Library")
]
library TRADEMGMTLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	
	[
		uuid(D19ABFAD-8266-4066-82AB-C1BD6C66B324),
		helpstring("TradeMgr Class")
	]
	coclass TradeMgr
	{
		[default] interface ITradeMgr;
	};
};

⌨️ 快捷键说明

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