home *** CD-ROM | disk | FTP | other *** search
- unit DbServer_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.11.1.63.1.0.1.0 $
- // File generated on 10/6/98 3:41:25 PM from Type Library described below.
-
- // ************************************************************************ //
- // Type Lib: C:\USR\BOB\MAGAZINE\DELPHI.MAG\#39\src\DbServer.tlb
- // IID\LCID: {C4C61521-5D0E-11D2-85BA-000000000000}\0
- // Helpfile:
- // HelpString: DbServer Library
- // Version: 1.0
- // ************************************************************************ //
-
- interface
-
- uses Windows, ActiveX, Classes, Graphics, OleCtrls, StdVCL;
-
- // *********************************************************************//
- // 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
- LIBID_DbServer: TGUID = '{C4C61521-5D0E-11D2-85BA-000000000000}';
- IID_IVisitorTracking: TGUID = '{C4C61522-5D0E-11D2-85BA-000000000000}';
- CLASS_VisitorTracking: TGUID = '{C4C61524-5D0E-11D2-85BA-000000000000}';
- type
-
- // *********************************************************************//
- // Forward declaration of interfaces defined in Type Library //
- // *********************************************************************//
- IVisitorTracking = interface;
- IVisitorTrackingDisp = dispinterface;
-
- // *********************************************************************//
- // Declaration of CoClasses defined in Type Library //
- // (NOTE: Here we map each CoClass to its Default Interface) //
- // *********************************************************************//
- VisitorTracking = IVisitorTracking;
-
-
- // *********************************************************************//
- // Interface: IVisitorTracking
- // Flags: (4416) Dual OleAutomation Dispatchable
- // GUID: {C4C61522-5D0E-11D2-85BA-000000000000}
- // *********************************************************************//
- IVisitorTracking = interface(IDataBroker)
- ['{C4C61522-5D0E-11D2-85BA-000000000000}']
- function Get_Provider1: IProvider; safecall;
- property Provider1: IProvider read Get_Provider1;
- end;
-
- // *********************************************************************//
- // DispIntf: IVisitorTrackingDisp
- // Flags: (4416) Dual OleAutomation Dispatchable
- // GUID: {C4C61522-5D0E-11D2-85BA-000000000000}
- // *********************************************************************//
- IVisitorTrackingDisp = dispinterface
- ['{C4C61522-5D0E-11D2-85BA-000000000000}']
- property Provider1: IProvider readonly dispid 1;
- function GetProviderNames: OleVariant; dispid 22929905;
- end;
-
- CoVisitorTracking = class
- class function Create: IVisitorTracking;
- class function CreateRemote(const MachineName: string): IVisitorTracking;
- end;
-
- implementation
-
- uses ComObj;
-
- class function CoVisitorTracking.Create: IVisitorTracking;
- begin
- Result := CreateComObject(CLASS_VisitorTracking) as IVisitorTracking;
- end;
-
- class function CoVisitorTracking.CreateRemote(const MachineName: string): IVisitorTracking;
- begin
- Result := CreateRemoteComObject(MachineName, CLASS_VisitorTracking) as IVisitorTracking;
- end;
-
- end.
-