home *** CD-ROM | disk | FTP | other *** search
- unit Project1_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 $
- // File generated on 29/03/99 15:30:37 from Type Library described below.
-
- // ************************************************************************ //
- // Type Lib: D:\conferen\multitier1\Project1.tlb
- // IID\LCID: {E803BCC0-E5EB-11D2-962A-0000E85E7443}\0
- // Helpfile:
- // HelpString: Project1 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_Project1: TGUID = '{E803BCC0-E5EB-11D2-962A-0000E85E7443}';
- IID_Inueva: TGUID = '{E803BCC1-E5EB-11D2-962A-0000E85E7443}';
- CLASS_nueva: TGUID = '{E803BCC3-E5EB-11D2-962A-0000E85E7443}';
- type
-
- // *********************************************************************//
- // Forward declaration of interfaces defined in Type Library //
- // *********************************************************************//
- Inueva = interface;
- InuevaDisp = dispinterface;
-
- // *********************************************************************//
- // Declaration of CoClasses defined in Type Library //
- // (NOTE: Here we map each CoClass to its Default Interface) //
- // *********************************************************************//
- nueva = Inueva;
-
-
- // *********************************************************************//
- // Interface: Inueva
- // Flags: (4416) Dual OleAutomation Dispatchable
- // GUID: {E803BCC1-E5EB-11D2-962A-0000E85E7443}
- // *********************************************************************//
- Inueva = interface(IDataBroker)
- ['{E803BCC1-E5EB-11D2-962A-0000E85E7443}']
- function Get_Table1: IProvider; safecall;
- property Table1: IProvider read Get_Table1;
- end;
-
- // *********************************************************************//
- // DispIntf: InuevaDisp
- // Flags: (4416) Dual OleAutomation Dispatchable
- // GUID: {E803BCC1-E5EB-11D2-962A-0000E85E7443}
- // *********************************************************************//
- InuevaDisp = dispinterface
- ['{E803BCC1-E5EB-11D2-962A-0000E85E7443}']
- property Table1: IProvider readonly dispid 1;
- function GetProviderNames: OleVariant; dispid 22929905;
- end;
-
- Conueva = class
- class function Create: Inueva;
- class function CreateRemote(const MachineName: string): Inueva;
- end;
-
- implementation
-
- uses ComObj;
-
- class function Conueva.Create: Inueva;
- begin
- Result := CreateComObject(CLASS_nueva) as Inueva;
- end;
-
- class function Conueva.CreateRemote(const MachineName: string): Inueva;
- begin
- Result := CreateRemoteComObject(MachineName, CLASS_nueva) as Inueva;
- end;
-
- end.
-