Subversion Repositories spacemission

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 daniel-mar 1
package DelphiX30;
2
 
3
{$R *.RES}
4
{$R 'DelphiX.dcr'}
5
{$ALIGN ON}
6
{$ASSERTIONS OFF}
7
{$BOOLEVAL OFF}
8
{$DEBUGINFO OFF}
9
{$EXTENDEDSYNTAX ON}
10
{$IMPORTEDDATA ON}
11
{$IOCHECKS OFF}
12
{$LOCALSYMBOLS OFF}
13
{$LONGSTRINGS ON}
14
{$OPENSTRINGS ON}
15
{$OPTIMIZATION ON}
16
{$OVERFLOWCHECKS OFF}
17
{$RANGECHECKS OFF}
18
{$REFERENCEINFO OFF}
19
{$SAFEDIVIDE OFF}
20
{$STACKFRAMES OFF}
21
{$TYPEDADDRESS OFF}
22
{$VARSTRINGCHECKS ON}
23
{$WRITEABLECONST ON}
24
{$MINENUMSIZE 1}
25
{$IMAGEBASE $00400000}
26
{$DESCRIPTION 'DelphiX - DirectX component collection for Delphi'}
27
{$IMPLICITBUILD ON}
28
 
29
requires
30
  vcl30,
31
  VCLSMP30;
32
 
33
contains
34
  DIB,
35
  DXClass,
36
  DXConsts,
37
  DXDraws,
38
  DXETable,
39
  DXInput,
40
  DXPlay,
41
  DXPlayFm,
42
  DXRender,
43
  DXReg,
44
  DXSounds,
45
  DXSprite,
46
  DXWave,
47
  DXFFBEdit,
48
  DXGUIDEdit,
49
  DXInptEdit,
50
  DXPictEdit,
51
  DXWaveEdit,
52
  turbopixels,
53
  DXSpriteEdit,
54
  DXMidiEdit,
55
  DXMapEdit,
56
  DXMapEditProperties,
57
  DXPathEdit,
58
  DXDIBEffectEdit;
59
 
60
end.