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

📄 server.idl

📁 inside com的源代码
💻 IDL
字号:
//
// Server.idl - IDL source for Server.dll
//
// MIDL generates proxy/stub code and a type library from this file.
//

//
// Interface descriptions
//
import "unknwn.idl" ; 

// Interface IX
[
	object,
	uuid(32BB8327-B41B-11CF-A6BB-0080C7B2D682),
	helpstring("IX Interface"),
	pointer_default(unique)
]
interface IX : IUnknown 
{
	HRESULT Tick() ;
	HRESULT SetStartCount([in] long NewCount) ;
	HRESULT GetCurrentCount([out, retval] long* pCurrentCount) ;
} ;

//
// Component description
//
[
	uuid(D3011EE2-B997-11CF-A6BB-0080C7B2D682),
	version(1.0),
	helpstring("Inside Com, Chapter 12 Ex 1 1.0 Type Library")
]
library ServerLib
{
	importlib("stdole32.tlb") ;

	// Component
	[
		uuid(0C092C2D-882C-11CF-A6BB-0080C7B2D682),
		helpstring("Component Class")
	]
	coclass Component
	{
		[default] interface IX ;
	} ;
} ;

  

⌨️ 快捷键说明

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