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