home *** CD-ROM | disk | FTP | other *** search
- unit DAO_Base;
-
- { Data Access Objects (DAO) interface for Delphi 32 - base decls.
- (c)1996 by Opus Software GmbH }
-
- {==============================================================================}
- interface
- uses
- OLE2;
-
-
- const
- TheLicKey = 'mjgcqcejfchcijecpdhckcdjqigdejfccjri';
-
- type
- TDAOStr = TBStr;
- TDAOBookmark = record
- bmPtr: PVarArray;
- bmDummy: longint; // this is unnecessary, but makes Delphi pass
- // the thing by reference when "const"
- end;
- VariantArg = TVarData;
- VariantBool = WordBool;
- VarIIndexFields = VariantArg;
- VarIField = VariantArg;
-
- { To pass arguments of this type, use the construct
-
- VariantArg( VarAsType( <value>, <type> ))
-
- where <type> is TVarType. }
-
-
- {==============================================================================}
- implementation
-
-
- end {DAO_Base}.
-