activeclock.odl

来自「《Visual C++ Bible》或者说是《Visual C++ 宝典》的对应」· ODL 代码 · 共 71 行

ODL
71
字号
// ActiveClock.odl : type library source for ActiveX Control project.

// This file will be processed by the Make Type Library (mktyplib) tool to
// produce the type library (ActiveClock.tlb) that will become a resource in
// ActiveClock.ocx.

#include <olectl.h>
#include <idispids.h>

[ uuid(616AF323-D5AA-11D0-B719-00C0A83735D8), version(1.0),
  helpfile("ActiveClock.hlp"),
  helpstring("ActiveClock ActiveX Control module"),
  control ]
library ACTIVECLOCKLib
{
	importlib(STDOLE_TLB);
	importlib(STDTYPE_TLB);

	//  Primary dispatch interface for CActiveClockCtrl

	[ uuid(616AF324-D5AA-11D0-B719-00C0A83735D8),
	  helpstring("Dispatch interface for ActiveClock Control"), hidden ]
	dispinterface _DActiveClock
	{
		properties:
			// NOTE - ClassWizard will maintain property information here.
			//    Use extreme caution when editing this section.
			//{{AFX_ODL_PROP(CActiveClockCtrl)
			[id(DISPID_BACKCOLOR), bindable, requestedit] OLE_COLOR BackColor;
			//}}AFX_ODL_PROP

		methods:
			// NOTE - ClassWizard will maintain method information here.
			//    Use extreme caution when editing this section.
			//{{AFX_ODL_METHOD(CActiveClockCtrl)
			//}}AFX_ODL_METHOD

			[id(DISPID_ABOUTBOX)] void AboutBox();
	};

	//  Event dispatch interface for CActiveClockCtrl

	[ uuid(616AF325-D5AA-11D0-B719-00C0A83735D8),
	  helpstring("Event interface for ActiveClock Control") ]
	dispinterface _DActiveClockEvents
	{
		properties:
			//  Event interface has no properties

		methods:
			// NOTE - ClassWizard will maintain event information here.
			//    Use extreme caution when editing this section.
			//{{AFX_ODL_EVENT(CActiveClockCtrl)
			//}}AFX_ODL_EVENT
	};

	//  Class information for CActiveClockCtrl

	[ uuid(616AF326-D5AA-11D0-B719-00C0A83735D8),
	  helpstring("ActiveClock Control"), control ]
	coclass ActiveClock
	{
		[default] dispinterface _DActiveClock;
		[default, source] dispinterface _DActiveClockEvents;
	};


	//{{AFX_APPEND_ODL}}
	//}}AFX_APPEND_ODL}}
};

⌨️ 快捷键说明

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