📄 dfminfo_tlb.pas
字号:
unit DFMInfo_TLB;
// ************************************************************************ //
// WARNING
// -------
// The types declared in this file were generated from data read from a
// Type Library. If this type library is explicitly or indirectly (via
// another type library referring to this type library) re-imported, or the
// 'Refresh' command of the Type Library Editor activated while editing the
// Type Library, the contents of this file will be regenerated and all
// manual modifications will be lost.
// ************************************************************************ //
// PASTLWTR : $Revision: 1.88.1.0.1.0 $
// File generated on 9/22/2000 7:44:18 PM from Type Library described below.
// ************************************************************************ //
// Type Lib: E:\Work\Win2K\DFMInfoTip\DFMInfoTip.tlb (1)
// IID\LCID: {8DC76F80-09F4-44FD-A101-3E43FF78C695}\0
// Helpfile:
// DepndLst:
// (1) v2.0 stdole, (C:\WINNT\System32\stdole2.tlb)
// (2) v4.0 StdVCL, (C:\WINNT\System32\STDVCL40.DLL)
// ************************************************************************ //
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
interface
uses Windows, ActiveX, Classes, Graphics, OleServer, OleCtrls, StdVCL;
// *********************************************************************//
// GUIDS declared in the TypeLibrary. Following prefixes are used:
// Type Libraries : LIBID_xxxx
// CoClasses : CLASS_xxxx
// DISPInterfaces : DIID_xxxx
// Non-DISP interfaces: IID_xxxx
// *********************************************************************//
const
// TypeLibrary Major and minor versions
DFMInfoMajorVersion = 1;
DFMInfoMinorVersion = 0;
LIBID_DFMInfo: TGUID = '{8DC76F80-09F4-44FD-A101-3E43FF78C695}';
IID_IDFMInfoTip: TGUID = '{B4D5F9E3-A8E9-4845-BA36-B10B29928B3B}';
CLASS_DFMInfoTip: TGUID = '{A6614304-6DFB-4A31-8032-C4E0CCA42D81}';
type
// *********************************************************************//
// Forward declaration of types defined in TypeLibrary
// *********************************************************************//
IDFMInfoTip = interface;
IDFMInfoTipDisp = dispinterface;
// *********************************************************************//
// Declaration of CoClasses defined in Type Library
// (NOTE: Here we map each CoClass to its Default Interface)
// *********************************************************************//
DFMInfoTip = IDFMInfoTip;
// *********************************************************************//
// Interface: IDFMInfoTip
// Flags: (4416) Dual OleAutomation Dispatchable
// GUID: {B4D5F9E3-A8E9-4845-BA36-B10B29928B3B}
// *********************************************************************//
IDFMInfoTip = interface(IDispatch)
['{B4D5F9E3-A8E9-4845-BA36-B10B29928B3B}']
end;
// *********************************************************************//
// DispIntf: IDFMInfoTipDisp
// Flags: (4416) Dual OleAutomation Dispatchable
// GUID: {B4D5F9E3-A8E9-4845-BA36-B10B29928B3B}
// *********************************************************************//
IDFMInfoTipDisp = dispinterface
['{B4D5F9E3-A8E9-4845-BA36-B10B29928B3B}']
end;
// *********************************************************************//
// The Class CoDFMInfoTip provides a Create and CreateRemote method to
// create instances of the default interface IDFMInfoTip exposed by
// the CoClass DFMInfoTip. The functions are intended to be used by
// clients wishing to automate the CoClass objects exposed by the
// server of this typelibrary.
// *********************************************************************//
CoDFMInfoTip = class
class function Create: IDFMInfoTip;
class function CreateRemote(const MachineName: string): IDFMInfoTip;
end;
implementation
uses ComObj;
class function CoDFMInfoTip.Create: IDFMInfoTip;
begin
Result := CreateComObject(CLASS_DFMInfoTip) as IDFMInfoTip;
end;
class function CoDFMInfoTip.CreateRemote(const MachineName: string): IDFMInfoTip;
begin
Result := CreateRemoteComObject(MachineName, CLASS_DFMInfoTip) as IDFMInfoTip;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -