ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/udr/fbintf.dpk
Revision: 375
Committed: Sun Jan 9 23:42:58 2022 UTC (2 years, 2 months ago) by tony
File size: 2369 byte(s)
Log Message:
Fixes

File Contents

# User Rev Content
1 tony 56 package fbintf;
2    
3     {$R *.res}
4 tony 371 {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
5 tony 56 {$ALIGN 8}
6     {$ASSERTIONS ON}
7     {$BOOLEVAL OFF}
8 tony 371 {$DEBUGINFO OFF}
9 tony 56 {$EXTENDEDSYNTAX ON}
10     {$IMPORTEDDATA ON}
11     {$IOCHECKS ON}
12     {$LOCALSYMBOLS ON}
13     {$LONGSTRINGS ON}
14     {$OPENSTRINGS ON}
15     {$OPTIMIZATION ON}
16     {$OVERFLOWCHECKS OFF}
17     {$RANGECHECKS ON}
18     {$REFERENCEINFO ON}
19     {$SAFEDIVIDE OFF}
20     {$STACKFRAMES OFF}
21     {$TYPEDADDRESS OFF}
22     {$VARSTRINGCHECKS ON}
23     {$WRITEABLECONST OFF}
24     {$MINENUMSIZE 1}
25     {$IMAGEBASE $400000}
26 tony 371 {$DEFINE DEBUG}
27     {$ENDIF IMPLICITBUILDING}
28 tony 56 {$IMPLICITBUILD ON}
29    
30     requires
31     rtl,
32     dbrtl;
33    
34     contains
35 tony 371 IBUtils in 'client\IBUtils.pas',
36     IB in 'client\IB.pas',
37     IBErrorCodes in 'client\IBErrorCodes.pas',
38     IBExternals in 'client\IBExternals.pas',
39 tony 56 FBTransaction in 'client\FBTransaction.pas',
40     FBActivityMonitor in 'client\FBActivityMonitor.pas',
41     FBArray in 'client\FBArray.pas',
42     FBAttachment in 'client\FBAttachment.pas',
43     FBBlob in 'client\FBBlob.pas',
44     FBClientAPI in 'client\FBClientAPI.pas',
45     FBEvents in 'client\FBEvents.pas',
46     FBOutputBlock in 'client\FBOutputBlock.pas',
47     FBParamBlock in 'client\FBParamBlock.pas',
48     FBServices in 'client\FBServices.pas',
49     FBSQLData in 'client\FBSQLData.pas',
50     FBStatement in 'client\FBStatement.pas',
51 tony 375 IBHeader in 'client\IBHeader.pas',
52 tony 56 FB25Array in 'client\2.5\FB25Array.pas',
53     FB25Attachment in 'client\2.5\FB25Attachment.pas',
54     FB25Blob in 'client\2.5\FB25Blob.pas',
55     FB25ClientAPI in 'client\2.5\FB25ClientAPI.pas',
56     FB25Events in 'client\2.5\FB25Events.pas',
57     FB25Services in 'client\2.5\FB25Services.pas',
58     FB25Statement in 'client\2.5\FB25Statement.pas',
59     FB25Transaction in 'client\2.5\FB25Transaction.pas',
60     FB30Transaction in 'client\3.0\FB30Transaction.pas',
61     FB30Array in 'client\3.0\FB30Array.pas',
62     FB30Attachment in 'client\3.0\FB30Attachment.pas',
63     FB30Blob in 'client\3.0\FB30Blob.pas',
64     FB30ClientAPI in 'client\3.0\FB30ClientAPI.pas',
65     FB30Events in 'client\3.0\FB30Events.pas',
66     FB30Services in 'client\3.0\FB30Services.pas',
67     FB30Statement in 'client\3.0\FB30Statement.pas',
68 tony 315 Firebird in 'client\3.0\firebird\Firebird.pas',
69     FBMessages in 'client\FBMessages.pas',
70     FB30TimeZoneServices in 'client\3.0\FB30TimeZoneServices.pas',
71 tony 371 FBClientLib in 'client\FBClientLib.pas',
72     FBNumeric in 'client\FBNumeric.pas';
73 tony 56
74     end.