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

📄 fwdshims.idl

📁 The source code samples for chapter 2, 4, 6, and 8 are contained in the EvenChapters project. Those
💻 IDL
字号:
// fwdshims.idl : IDL source for fwdshims.dll
//

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

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

    [ uuid(10712B76-370D-11D2-984B-00600823CFFB) ]
    interface ICowboy : IUnknown {
	    HRESULT Draw();
    };

    [ uuid(10712B77-370D-11D2-984B-00600823CFFB) ]
    interface IArtist : IUnknown {
	    HRESULT Draw();
    };

[
	uuid(10712B68-370D-11D2-984B-00600823CFFB),
	version(1.0),
	helpstring("fwdshims 1.0 Type Library")
]
library FWDSHIMSLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(10712B75-370D-11D2-984B-00600823CFFB),
		helpstring("AcePowell Class")
	]
	coclass AcePowell
	{
        interface IArtist;
        interface ICowboy;
	};
};

⌨️ 快捷键说明

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