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

📄 encryptmenu_tlb.~pas

📁 右键菜单实现文件加密
💻 ~PAS
字号:
unit EncryptMenu_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 2007-6-9 下午 03:53:46 from Type Library described below.

// ************************************************************************  //
// Type Lib: E:\EncryptFile\EncryptMenu\EncryptMenu.tlb (1)
// LIBID: {F8E97FC9-ECA8-4EAE-980F-A817FA9568FC}
// LCID: 0
// Helpfile: 
// HelpString: EncryptMenu Library
// DepndLst: 
//   (1) v2.0 stdole, (C:\WINDOWS\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
  EncryptMenuMajorVersion = 1;
  EncryptMenuMinorVersion = 0;

  LIBID_EncryptMenu: TGUID = '{F8E97FC9-ECA8-4EAE-980F-A817FA9568FC}';

  IID_IEncryptMen: TGUID = '{392B0C54-CDE3-4D48-B134-9F9F77852567}';
  CLASS_EncryptMen: TGUID = '{3D7130C0-A6B5-4765-8612-59C04AF0DC9E}';
type

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

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


// *********************************************************************//
// Interface: IEncryptMen
// Flags:     (256) OleAutomation
// GUID:      {392B0C54-CDE3-4D48-B134-9F9F77852567}
// *********************************************************************//
  IEncryptMen = interface(IUnknown)
    ['{392B0C54-CDE3-4D48-B134-9F9F77852567}']
  end;

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

implementation

uses ComObj;

class function CoEncryptMen.Create: IEncryptMen;
begin
  Result := CreateComObject(CLASS_EncryptMen) as IEncryptMen;
end;

class function CoEncryptMen.CreateRemote(const MachineName: string): IEncryptMen;
begin
  Result := CreateRemoteComObject(MachineName, CLASS_EncryptMen) as IEncryptMen;
end;

end.

⌨️ 快捷键说明

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