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

📄 showieband_tlb.pas

📁 查找进程的好源码
💻 PAS
字号:
unit ShowIEBand_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-11-2 13:02:51 from Type Library described below.

// ************************************************************************  //
// Type Lib: D:\Work\IE插件\显示工具栏\ShowIEBand.tlb (1)
// LIBID: {B003F23D-37C8-4900-80F2-53FCB75C873E}
// LCID: 0
// Helpfile: 
// HelpString: ShowIEBand 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
  ShowIEBandMajorVersion = 1;
  ShowIEBandMinorVersion = 0;

  LIBID_ShowIEBand: TGUID = '{B003F23D-37C8-4900-80F2-53FCB75C873E}';

  IID_IShowIDBand: TGUID = '{AD52E889-F917-489D-AAD5-580F5F04D5EC}';
  CLASS_ShowIDBand: TGUID = '{35DEAE52-326B-4203-99FE-0EA499B9CB58}';
type

// *********************************************************************//
// Forward declaration of types defined in TypeLibrary                    
// *********************************************************************//
  IShowIDBand = interface;

// *********************************************************************//
// Declaration of CoClasses defined in Type Library                       
// (NOTE: Here we map each CoClass to its Default Interface)              
// *********************************************************************//
  ShowIDBand = IShowIDBand;


// *********************************************************************//
// Interface: IShowIDBand
// Flags:     (256) OleAutomation
// GUID:      {AD52E889-F917-489D-AAD5-580F5F04D5EC}
// *********************************************************************//
  IShowIDBand = interface(IUnknown)
    ['{AD52E889-F917-489D-AAD5-580F5F04D5EC}']
  end;

// *********************************************************************//
// The Class CoShowIDBand provides a Create and CreateRemote method to          
// create instances of the default interface IShowIDBand exposed by              
// the CoClass ShowIDBand. The functions are intended to be used by             
// clients wishing to automate the CoClass objects exposed by the         
// server of this typelibrary.                                            
// *********************************************************************//
  CoShowIDBand = class
    class function Create: IShowIDBand;
    class function CreateRemote(const MachineName: string): IShowIDBand;
  end;

implementation

uses ComObj;

class function CoShowIDBand.Create: IShowIDBand;
begin
  Result := CreateComObject(CLASS_ShowIDBand) as IShowIDBand;
end;

class function CoShowIDBand.CreateRemote(const MachineName: string): IShowIDBand;
begin
  Result := CreateRemoteComObject(MachineName, CLASS_ShowIDBand) as IShowIDBand;
end;

end.

⌨️ 快捷键说明

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