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

📄 wndbg.idl

📁 此上载文件包含了多个用vc开发的实例。包含了VCL控件的使用
💻 IDL
字号:
// WndBG.idl : IDL source for WndBG.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(E3F0A13E-4F7A-11D5-B778-00D009E4D2C8),
		dual,
		helpstring("ISetBG Interface"),
		pointer_default(unique)
	]
	interface ISetBG : IDispatch
	{
		[id(1), helpstring("method LoadFromRes")] HRESULT LoadFromRes([in] int ResourceID,[in] int ResType);
		[id(2), helpstring("method ShowPicByHandle")] HRESULT ShowPicByHandle([in]long hWnd,[in] int x,[in] int y,[in] int PicType);
		[id(3), helpstring("method LoadFromFile")] HRESULT LoadFromFile([in] BSTR FilePath);
		[id(4), helpstring("method ReleaseAll")] HRESULT ReleaseAll();
		[id(5), helpstring("method ShowPicByTitle")] HRESULT ShowPicByTitle([in]BSTR ClassName,[in]BSTR WndTitle,[in] int x,[in] int y,[in]int PicType);
	
	};

[
	uuid(E3F0A131-4F7A-11D5-B778-00D009E4D2C8),
	version(1.0),
	helpstring("WndBG 1.0 Type Library")
]
library WNDBGLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(E3F0A13F-4F7A-11D5-B778-00D009E4D2C8),
		helpstring("SetBG Class")
	]
	coclass SetBG
	{
		[default] interface ISetBG;
	};
};

⌨️ 快捷键说明

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