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

📄 statcurve360_tlb.pas

📁 汽车行驶记录仪360小时的全程速度时间曲线图的组件。
💻 PAS
字号:
unit StatCurve360_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-8 10:40:16 from Type Library described below.

// ************************************************************************  //
// Type Lib: C:\CarMM\Code\Component\FORM\360小时速度状态曲线组件\StatCurve360.tlb (1)
// LIBID: {C7F4909E-E74C-4A46-AC42-AAAC45A1D2B5}
// 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
  StatCurve360MajorVersion = 1;
  StatCurve360MinorVersion = 0;

  LIBID_StatCurve360: TGUID = '{C7F4909E-E74C-4A46-AC42-AAAC45A1D2B5}';

  IID_IStatCurve360_COM: TGUID = '{C61995DB-6E0C-48A0-8858-4D8EB9E5020B}';
  CLASS_StatCurve360_COM: TGUID = '{BE207F7E-F833-4215-ACB1-F023B39854DE}';
type

// *********************************************************************//
// Forward declaration of types defined in TypeLibrary                    
// *********************************************************************//
  IStatCurve360_COM = interface;
  IStatCurve360_COMDisp = dispinterface;

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


// *********************************************************************//
// Interface: IStatCurve360_COM
// Flags:     (4416) Dual OleAutomation Dispatchable
// GUID:      {C61995DB-6E0C-48A0-8858-4D8EB9E5020B}
// *********************************************************************//
  IStatCurve360_COM = interface(IDispatch)
    ['{C61995DB-6E0C-48A0-8858-4D8EB9E5020B}']
    function MMInvoke(const POperation: WideString; const PTmpID: WideString; 
                      const PUser: WideString; const PConnString: WideString): WideString; safecall;
  end;

// *********************************************************************//
// DispIntf:  IStatCurve360_COMDisp
// Flags:     (4416) Dual OleAutomation Dispatchable
// GUID:      {C61995DB-6E0C-48A0-8858-4D8EB9E5020B}
// *********************************************************************//
  IStatCurve360_COMDisp = dispinterface
    ['{C61995DB-6E0C-48A0-8858-4D8EB9E5020B}']
    function MMInvoke(const POperation: WideString; const PTmpID: WideString; 
                      const PUser: WideString; const PConnString: WideString): WideString; dispid 1;
  end;

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

implementation

uses ComObj;

class function CoStatCurve360_COM.Create: IStatCurve360_COM;
begin
  Result := CreateComObject(CLASS_StatCurve360_COM) as IStatCurve360_COM;
end;

class function CoStatCurve360_COM.CreateRemote(const MachineName: string): IStatCurve360_COM;
begin
  Result := CreateRemoteComObject(MachineName, CLASS_StatCurve360_COM) as IStatCurve360_COM;
end;

end.

⌨️ 快捷键说明

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