-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathNetCom7.dpk
84 lines (79 loc) · 2.83 KB
/
NetCom7.dpk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package NetCom7;
{$R *.res}
{$R 'Source\NetComRegister.dcr'}
{$R *.dres}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS OFF}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS OFF}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO OFF}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS OFF}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE RELEASE}
{$ENDIF IMPLICITBUILDING}
{$DESCRIPTION 'NetCom7 Network Communications Suite'}
{$IMPLICITBUILD ON}
requires
rtl,
DesignIDE,
dbrtl,
adortl;
contains
NetComRegister in 'Source\NetComRegister.pas',
ncThreads in 'Source\ncThreads.pas',
ncLines in 'Source\ncLines.pas',
ncSocketList in 'Source\ncSocketList.pas',
ncSockets in 'Source\ncSockets.pas',
ncCommandPacking in 'Source\ncCommandPacking.pas',
ncCommandHandlers in 'Source\ncCommandHandlers.pas',
ncSources in 'Source\ncSources.pas',
ncSerializeADO in 'Source\ncSerializeADO.pas',
ncDBSrv in 'Source\ncDBSrv.pas',
ncDBCnt in 'Source\ncDBCnt.pas',
ncDBCommands in 'Source\ncDBCommands.pas',
ncCompression in 'Source\ncCompression.pas',
ncEncryption in 'Source\ncEncryption.pas',
ncEncBlockciphers in 'Source\Encryption\ncEncBlockciphers.pas',
ncEncBlowfish in 'Source\Encryption\ncEncBlowfish.pas',
ncEncCast128 in 'Source\Encryption\ncEncCast128.pas',
ncEncCast256 in 'Source\Encryption\ncEncCast256.pas',
ncEncCrypt2 in 'Source\Encryption\ncEncCrypt2.pas',
ncEncDes in 'Source\Encryption\ncEncDes.pas',
ncEncHaval in 'Source\Encryption\ncEncHaval.pas',
ncEncIce in 'Source\Encryption\ncEncIce.pas',
ncEncIdea in 'Source\Encryption\ncEncIdea.pas',
ncEncMars in 'Source\Encryption\ncEncMars.pas',
ncEncMd4 in 'Source\Encryption\ncEncMd4.pas',
ncEncMd5 in 'Source\Encryption\ncEncMd5.pas',
ncEncMisty1 in 'Source\Encryption\ncEncMisty1.pas',
ncEncRc2 in 'Source\Encryption\ncEncRc2.pas',
ncEncRc4 in 'Source\Encryption\ncEncRc4.pas',
ncEncRc5 in 'Source\Encryption\ncEncRc5.pas',
ncEncRc6 in 'Source\Encryption\ncEncRc6.pas',
ncEncRijndael in 'Source\Encryption\ncEncRijndael.pas',
ncEncRipemd128 in 'Source\Encryption\ncEncRipemd128.pas',
ncEncRipemd160 in 'Source\Encryption\ncEncRipemd160.pas',
ncEncSerpent in 'Source\Encryption\ncEncSerpent.pas',
ncEncSha1 in 'Source\Encryption\ncEncSha1.pas',
ncEncSha256 in 'Source\Encryption\ncEncSha256.pas',
ncEncSha512 in 'Source\Encryption\ncEncSha512.pas',
ncEncTea in 'Source\Encryption\ncEncTea.pas',
ncEncTiger in 'Source\Encryption\ncEncTiger.pas',
ncEncTwofish in 'Source\Encryption\ncEncTwofish.pas',
ncPendingCommandsList in 'Source\ncPendingCommandsList.pas';
end.