Subversion Repositories spacemission

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 daniel-mar 1
package DelphiX90;
2
 
3
{$R *.res}
4
{$R 'DelphiX.dcr'}
5
{$ALIGN 8}
6
{$ASSERTIONS OFF}
7
{$BOOLEVAL OFF}
8
{$DEBUGINFO OFF}
9
{$EXTENDEDSYNTAX ON}
10
{$IMPORTEDDATA ON}
11
{$IOCHECKS ON}
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 $400000}
26
{$DESCRIPTION 'DelphiX - DirectX components for Delphi'}
27
{$IMPLICITBUILD ON}
28
 
29
requires
30
  vcl,
31
  vclsmp,
32
  designide,
33
  rtl,
34
  vcljpg,
35
  vclx;
36
 
37
contains
38
  DIB in 'DIB.pas',
39
  DXClass in 'DXClass.pas',
40
  DXConsts in 'DXConsts.pas',
41
  DXDraws in 'DXDraws.pas',
42
  DXETable in 'DXETable.pas',
43
  DXInput in 'DXInput.pas',
44
  DXPlay in 'DXPlay.pas',
45
  DXPlayFm in 'DXPlayFm.pas' {DelphiXDXPlayForm},
46
  DXRender in 'DXRender.pas',
47
  DXReg in 'DXReg.pas',
48
  DXSounds in 'DXSounds.pas',
49
  DXSprite in 'DXSprite.pas',
50
  DXWave in 'DXWave.pas',
51
  DXFFBEdit in 'DXFFBEdit.pas' {DelphiXFFEditForm},
52
  DXGUIDEdit in 'DXGUIDEdit.pas' {DelphiXGUIDEditForm},
53
  DXInptEdit in 'DXInptEdit.pas' {DelphiXInputEditForm},
54
  DXPictEdit in 'DXPictEdit.pas' {DelphiXPictureEditForm},
55
  DXWaveEdit in 'DXWaveEdit.pas' {DelphiXWaveEditForm},
56
  TurboPixels in 'TurboPixels.pas',
57
  DXSpriteEdit in 'DXSpriteEdit.pas' {DelphiXSpriteEditForm},
58
  DXMidiEdit in 'DXMidiEdit.pas' {DelphiXMidiEditForm},
59
  DXMapEditProperties in 'DXMapEditProperties.pas' {DelphiXMapEditPropertiesForm},
60
  DXMapEdit in 'DXMapEdit.pas' {DelphiXMapEditForm},
61
  DxPathEdit in 'DxPathEdit.pas' {DelphiXPathsEditForm},
62
  DXGlueItEdit in 'DXGlueItEdit.pas' {DXGlueItEditor},
63
  DXDIBEffectEdit in 'DXDIBEffectEdit.pas' {TDelphiXDIBEffectEditForm};
64
 
65
end.