git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.SDAC@3 6f543ec7-021b-7e4c-98c9-62eafc7fb9a8
120 lines
5.8 KiB
ObjectPascal
120 lines
5.8 KiB
ObjectPascal
unit Server_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.88.1.0.1.0 $
|
|
// File generated on 02.07.2001 15:36:17 from Type Library described below.
|
|
|
|
// ************************************************************************ //
|
|
// Type Lib: D:\Projects\Delphi\MSDAC\Demos\Midas\Delphi5\Server.tlb (1)
|
|
// IID\LCID: {07DB43ED-D8D6-4119-9861-2B7B79032B5F}\0
|
|
// Helpfile:
|
|
// DepndLst:
|
|
// (1) v1.0 Midas, (C:\WINDOWS\SYSTEM\MIDAS.DLL)
|
|
// (2) v2.0 stdole, (C:\WINDOWS\SYSTEM\stdole2.tlb)
|
|
// (3) v4.0 StdVCL, (C:\WINDOWS\SYSTEM\STDVCL40.DLL)
|
|
// ************************************************************************ //
|
|
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
|
|
interface
|
|
|
|
uses Windows, ActiveX, Classes, Graphics, OleServer, OleCtrls, StdVCL,
|
|
MIDAS;
|
|
|
|
// *********************************************************************//
|
|
// 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
|
|
ServerMajorVersion = 1;
|
|
ServerMinorVersion = 0;
|
|
|
|
LIBID_Server: TGUID = '{07DB43ED-D8D6-4119-9861-2B7B79032B5F}';
|
|
|
|
IID_IDatas: TGUID = '{E79F2D5B-8F47-4CB6-B441-251950054002}';
|
|
CLASS_Datas: TGUID = '{706739B2-FB40-49CC-9041-2B82CFFC520C}';
|
|
type
|
|
|
|
// *********************************************************************//
|
|
// Forward declaration of types defined in TypeLibrary
|
|
// *********************************************************************//
|
|
IDatas = interface;
|
|
IDatasDisp = dispinterface;
|
|
|
|
// *********************************************************************//
|
|
// Declaration of CoClasses defined in Type Library
|
|
// (NOTE: Here we map each CoClass to its Default Interface)
|
|
// *********************************************************************//
|
|
Datas = IDatas;
|
|
|
|
|
|
// *********************************************************************//
|
|
// Interface: IDatas
|
|
// Flags: (4416) Dual OleAutomation Dispatchable
|
|
// GUID: {E79F2D5B-8F47-4CB6-B441-251950054002}
|
|
// *********************************************************************//
|
|
IDatas = interface(IAppServer)
|
|
['{E79F2D5B-8F47-4CB6-B441-251950054002}']
|
|
end;
|
|
|
|
// *********************************************************************//
|
|
// DispIntf: IDatasDisp
|
|
// Flags: (4416) Dual OleAutomation Dispatchable
|
|
// GUID: {E79F2D5B-8F47-4CB6-B441-251950054002}
|
|
// *********************************************************************//
|
|
IDatasDisp = dispinterface
|
|
['{E79F2D5B-8F47-4CB6-B441-251950054002}']
|
|
function AS_ApplyUpdates(const ProviderName: WideString; Delta: OleVariant;
|
|
MaxErrors: Integer; out ErrorCount: Integer; var OwnerData: OleVariant): OleVariant; dispid 20000000;
|
|
function AS_GetRecords(const ProviderName: WideString; Count: Integer; out RecsOut: Integer;
|
|
Options: Integer; const CommandText: WideString;
|
|
var Params: OleVariant; var OwnerData: OleVariant): OleVariant; dispid 20000001;
|
|
function AS_DataRequest(const ProviderName: WideString; Data: OleVariant): OleVariant; dispid 20000002;
|
|
function AS_GetProviderNames: OleVariant; dispid 20000003;
|
|
function AS_GetParams(const ProviderName: WideString; var OwnerData: OleVariant): OleVariant; dispid 20000004;
|
|
function AS_RowRequest(const ProviderName: WideString; Row: OleVariant; RequestType: Integer;
|
|
var OwnerData: OleVariant): OleVariant; dispid 20000005;
|
|
procedure AS_Execute(const ProviderName: WideString; const CommandText: WideString;
|
|
var Params: OleVariant; var OwnerData: OleVariant); dispid 20000006;
|
|
end;
|
|
|
|
// *********************************************************************//
|
|
// The Class CoDatas provides a Create and CreateRemote method to
|
|
// create instances of the default interface IDatas exposed by
|
|
// the CoClass Datas. The functions are intended to be used by
|
|
// clients wishing to automate the CoClass objects exposed by the
|
|
// server of this typelibrary.
|
|
// *********************************************************************//
|
|
CoDatas = class
|
|
class function Create: IDatas;
|
|
class function CreateRemote(const MachineName: string): IDatas;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses ComObj;
|
|
|
|
class function CoDatas.Create: IDatas;
|
|
begin
|
|
Result := CreateComObject(CLASS_Datas) as IDatas;
|
|
end;
|
|
|
|
class function CoDatas.CreateRemote(const MachineName: string): IDatas;
|
|
begin
|
|
Result := CreateRemoteComObject(MachineName, CLASS_Datas) as IDatas;
|
|
end;
|
|
|
|
end.
|