git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.SDAC@3 6f543ec7-021b-7e4c-98c9-62eafc7fb9a8
101 lines
5.6 KiB
ObjectPascal
101 lines
5.6 KiB
ObjectPascal
unit Midas_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: C:\WINDOWS\SYSTEM\MIDAS.DLL (1)
|
|
// IID\LCID: {83F57D68-CA9A-11D2-9088-00C04FA35CFA}\0
|
|
// Helpfile:
|
|
// DepndLst:
|
|
// (1) v2.0 stdole, (C:\WINDOWS\SYSTEM\stdole2.tlb)
|
|
// Parent TypeLibrary:
|
|
// (0) v1.0 Server, (D:\Projects\Delphi\MSDAC\Demos\Midas\Delphi5\Server.tlb)
|
|
// ************************************************************************ //
|
|
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
|
|
interface
|
|
|
|
uses Windows, ActiveX, Classes, Graphics, OleServer, 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
|
|
// TypeLibrary Major and minor versions
|
|
MidasMajorVersion = 1;
|
|
MidasMinorVersion = 0;
|
|
|
|
LIBID_Midas: TGUID = '{83F57D68-CA9A-11D2-9088-00C04FA35CFA}';
|
|
|
|
IID_IAppServer: TGUID = '{1AEFCC20-7A24-11D2-98B0-C69BEB4B5B6D}';
|
|
type
|
|
|
|
// *********************************************************************//
|
|
// Forward declaration of types defined in TypeLibrary
|
|
// *********************************************************************//
|
|
IAppServer = interface;
|
|
IAppServerDisp = dispinterface;
|
|
|
|
// *********************************************************************//
|
|
// Interface: IAppServer
|
|
// Flags: (4416) Dual OleAutomation Dispatchable
|
|
// GUID: {1AEFCC20-7A24-11D2-98B0-C69BEB4B5B6D}
|
|
// *********************************************************************//
|
|
IAppServer = interface(IDispatch)
|
|
['{1AEFCC20-7A24-11D2-98B0-C69BEB4B5B6D}']
|
|
function AS_ApplyUpdates(const ProviderName: WideString; Delta: OleVariant;
|
|
MaxErrors: Integer; out ErrorCount: Integer; var OwnerData: OleVariant): OleVariant; safecall;
|
|
function AS_GetRecords(const ProviderName: WideString; Count: Integer; out RecsOut: Integer;
|
|
Options: Integer; const CommandText: WideString;
|
|
var Params: OleVariant; var OwnerData: OleVariant): OleVariant; safecall;
|
|
function AS_DataRequest(const ProviderName: WideString; Data: OleVariant): OleVariant; safecall;
|
|
function AS_GetProviderNames: OleVariant; safecall;
|
|
function AS_GetParams(const ProviderName: WideString; var OwnerData: OleVariant): OleVariant; safecall;
|
|
function AS_RowRequest(const ProviderName: WideString; Row: OleVariant; RequestType: Integer;
|
|
var OwnerData: OleVariant): OleVariant; safecall;
|
|
procedure AS_Execute(const ProviderName: WideString; const CommandText: WideString;
|
|
var Params: OleVariant; var OwnerData: OleVariant); safecall;
|
|
end;
|
|
|
|
// *********************************************************************//
|
|
// DispIntf: IAppServerDisp
|
|
// Flags: (4416) Dual OleAutomation Dispatchable
|
|
// GUID: {1AEFCC20-7A24-11D2-98B0-C69BEB4B5B6D}
|
|
// *********************************************************************//
|
|
IAppServerDisp = dispinterface
|
|
['{1AEFCC20-7A24-11D2-98B0-C69BEB4B5B6D}']
|
|
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;
|
|
|
|
implementation
|
|
|
|
uses ComObj;
|
|
|
|
end.
|