?? statcurve_tlb.~pas
字號:
unit StatCurve_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-6 23:35:30 from Type Library described below.
// ************************************************************************ //
// Type Lib: C:\CarMM\Code\Component\FORM\數據統計曲線組件\StatCurve.tlb (1)
// LIBID: {54D3651C-CB52-489C-8158-18EE7D137AF7}
// 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
StatCurveMajorVersion = 1;
StatCurveMinorVersion = 0;
LIBID_StatCurve: TGUID = '{54D3651C-CB52-489C-8158-18EE7D137AF7}';
IID_IStatCurve_COM: TGUID = '{A1EB6E34-6111-4A1D-885A-C5201623D39A}';
CLASS_StatCurve_COM: TGUID = '{9EAFD821-26B4-431F-9A41-B80038FA967A}';
type
// *********************************************************************//
// Forward declaration of types defined in TypeLibrary
// *********************************************************************//
IStatCurve_COM = interface;
IStatCurve_COMDisp = dispinterface;
// *********************************************************************//
// Declaration of CoClasses defined in Type Library
// (NOTE: Here we map each CoClass to its Default Interface)
// *********************************************************************//
StatCurve_COM = IStatCurve_COM;
// *********************************************************************//
// Interface: IStatCurve_COM
// Flags: (4416) Dual OleAutomation Dispatchable
// GUID: {A1EB6E34-6111-4A1D-885A-C5201623D39A}
// *********************************************************************//
IStatCurve_COM = interface(IDispatch)
['{A1EB6E34-6111-4A1D-885A-C5201623D39A}']
function MMInvoke(const POperation: WideString; const PTmpID: WideString;
const PUser: WideString; const PConnString: WideString): WideString; safecall;
end;
// *********************************************************************//
// DispIntf: IStatCurve_COMDisp
// Flags: (4416) Dual OleAutomation Dispatchable
// GUID: {A1EB6E34-6111-4A1D-885A-C5201623D39A}
// *********************************************************************//
IStatCurve_COMDisp = dispinterface
['{A1EB6E34-6111-4A1D-885A-C5201623D39A}']
function MMInvoke(const POperation: WideString; const PTmpID: WideString;
const PUser: WideString; const PConnString: WideString): WideString; dispid 1;
end;
// *********************************************************************//
// The Class CoStatCurve_COM provides a Create and CreateRemote method to
// create instances of the default interface IStatCurve_COM exposed by
// the CoClass StatCurve_COM. The functions are intended to be used by
// clients wishing to automate the CoClass objects exposed by the
// server of this typelibrary.
// *********************************************************************//
CoStatCurve_COM = class
class function Create: IStatCurve_COM;
class function CreateRemote(const MachineName: string): IStatCurve_COM;
end;
implementation
uses ComObj;
class function CoStatCurve_COM.Create: IStatCurve_COM;
begin
Result := CreateComObject(CLASS_StatCurve_COM) as IStatCurve_COM;
end;
class function CoStatCurve_COM.CreateRemote(const MachineName: string): IStatCurve_COM;
begin
Result := CreateRemoteComObject(MachineName, CLASS_StatCurve_COM) as IStatCurve_COM;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -