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

📄 login_tlb.pas

📁 汽车行驶记录仪数据采集处理系统
💻 PAS
字号:
unit Login_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.130.1.0.1.0.1.6  $
// File generated on 2003-11-5 15:48:08 from Type Library described below.

// ************************************************************************  //
// Type Lib: C:\CarMM\Code\Component\FORM\系统登陆组件\Login.tlb (1)
// LIBID: {95F71AB9-40F4-4219-A30B-3B780D34F477}
// LCID: 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. 
{$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
  LoginMajorVersion = 1;
  LoginMinorVersion = 0;

  LIBID_Login: TGUID = '{95F71AB9-40F4-4219-A30B-3B780D34F477}';

  IID_ILogin_COM: TGUID = '{B9E00A65-0399-45E8-ADD2-F1748335EA41}';
  CLASS_Login_COM: TGUID = '{73838CD8-BFCB-4846-B0F5-298F91D3F413}';
type

// *********************************************************************//
// Forward declaration of types defined in TypeLibrary                    
// *********************************************************************//
  ILogin_COM = interface;
  ILogin_COMDisp = dispinterface;

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


// *********************************************************************//
// Interface: ILogin_COM
// Flags:     (4416) Dual OleAutomation Dispatchable
// GUID:      {B9E00A65-0399-45E8-ADD2-F1748335EA41}
// *********************************************************************//
  ILogin_COM = interface(IDispatch)
    ['{B9E00A65-0399-45E8-ADD2-F1748335EA41}']
    function MMInvoke(const PAddition: WideString): WideString; safecall;
  end;

// *********************************************************************//
// DispIntf:  ILogin_COMDisp
// Flags:     (4416) Dual OleAutomation Dispatchable
// GUID:      {B9E00A65-0399-45E8-ADD2-F1748335EA41}
// *********************************************************************//
  ILogin_COMDisp = dispinterface
    ['{B9E00A65-0399-45E8-ADD2-F1748335EA41}']
    function MMInvoke(const PAddition: WideString): WideString; dispid 1;
  end;

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

implementation

uses ComObj;

class function CoLogin_COM.Create: ILogin_COM;
begin
  Result := CreateComObject(CLASS_Login_COM) as ILogin_COM;
end;

class function CoLogin_COM.CreateRemote(const MachineName: string): ILogin_COM;
begin
  Result := CreateRemoteComObject(MachineName, CLASS_Login_COM) as ILogin_COM;
end;

end.

⌨️ 快捷键说明

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