📄 mailieband_tlb.~pas
字号:
unit MailIEBand_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 : 1.2
// File generated on 2006-10-31 16:12:08 from Type Library described below.
// ************************************************************************ //
// Type Lib: D:\Work\IE插件\IE工具栏\MailIEBand.tlb (1)
// LIBID: {A078612A-EA84-4115-B2C7-7AE9EDA70C1F}
// LCID: 0
// Helpfile:
// HelpString: MailIEBand Library
// DepndLst:
// (1) v2.0 stdole, (C:\WINNT\system32\stdole2.tlb)
// ************************************************************************ //
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
{$WARN SYMBOL_PLATFORM OFF}
{$WRITEABLECONST ON}
{$VARPROPSETTER ON}
interface
uses Windows, ActiveX, Classes, Graphics, StdVCL, Variants;
// *********************************************************************//
// 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
MailIEBandMajorVersion = 1;
MailIEBandMinorVersion = 0;
LIBID_MailIEBand: TGUID = '{A078612A-EA84-4115-B2C7-7AE9EDA70C1F}';
IID_IGetMailBand: TGUID = '{B6D2A030-3025-42C7-8A3A-E697D1CE8E64}';
CLASS_GetMailBand: TGUID = '{C6872852-2478-4417-A4A0-BCB483B9B710}';
type
// *********************************************************************//
// Forward declaration of types defined in TypeLibrary
// *********************************************************************//
IGetMailBand = interface;
// *********************************************************************//
// Declaration of CoClasses defined in Type Library
// (NOTE: Here we map each CoClass to its Default Interface)
// *********************************************************************//
GetMailBand = IGetMailBand;
// *********************************************************************//
// Interface: IGetMailBand
// Flags: (256) OleAutomation
// GUID: {B6D2A030-3025-42C7-8A3A-E697D1CE8E64}
// *********************************************************************//
IGetMailBand = interface(IUnknown)
['{B6D2A030-3025-42C7-8A3A-E697D1CE8E64}']
end;
// *********************************************************************//
// The Class CoGetMailBand provides a Create and CreateRemote method to
// create instances of the default interface IGetMailBand exposed by
// the CoClass GetMailBand. The functions are intended to be used by
// clients wishing to automate the CoClass objects exposed by the
// server of this typelibrary.
// *********************************************************************//
CoGetMailBand = class
class function Create: IGetMailBand;
class function CreateRemote(const MachineName: string): IGetMailBand;
end;
implementation
uses ComObj;
class function CoGetMailBand.Create: IGetMailBand;
begin
Result := CreateComObject(CLASS_GetMailBand) as IGetMailBand;
end;
class function CoGetMailBand.CreateRemote(const MachineName: string): IGetMailBand;
begin
Result := CreateRemoteComObject(MachineName, CLASS_GetMailBand) as IGetMailBand;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -