Subversion Repositories decoder

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
package DragDropD6;
2
 
3
{$R *.res}
4
{$R 'DragDrop.dcr'}
5
{$R 'DropSource.dcr'}
6
{$R 'DropTarget.dcr'}
7
{$R 'DragDropText.dcr'}
8
{$R 'DragDropFile.dcr'}
9
{$R 'DragDropGraphics.dcr'}
10
{$R 'DragDropPIDL.dcr'}
11
{$R 'DragDropInternet.dcr'}
12
{$R 'DropComboTarget.dcr'}
13
{$R 'DragDropHandler.dcr'}
14
{$R 'DragDropContext.dcr'}
15
{$R 'DropHandler.dcr'}
16
{$ALIGN 4}
17
{$ASSERTIONS ON}
18
{$BOOLEVAL OFF}
19
{$DEBUGINFO ON}
20
{$EXTENDEDSYNTAX ON}
21
{$IMPORTEDDATA OFF}
22
{$IOCHECKS ON}
23
{$LOCALSYMBOLS ON}
24
{$LONGSTRINGS ON}
25
{$OPENSTRINGS ON}
26
{$OPTIMIZATION OFF}
27
{$OVERFLOWCHECKS ON}
28
{$RANGECHECKS ON}
29
{$REFERENCEINFO ON}
30
{$SAFEDIVIDE OFF}
31
{$STACKFRAMES ON}
32
{$TYPEDADDRESS ON}
33
{$VARSTRINGCHECKS ON}
34
{$WRITEABLECONST OFF}
35
{$MINENUMSIZE 1}
36
{$IMAGEBASE $456789}
37
{$DESCRIPTION 'Drag and Drop Component Suite'}
38
{$DESIGNONLY}
39
{$IMPLICITBUILD OFF}
40
{$DEFINE DEBUG}
41
 
42
requires
43
  Vcl;
44
 
45
contains
46
  DropSource in 'DropSource.pas',
47
  DropTarget in 'DropTarget.pas',
48
  DragDropPIDL in 'DragDropPIDL.pas',
49
  DragDropFormats in 'DragDropFormats.pas',
50
  DropComboTarget in 'DropComboTarget.pas',
51
  DragDropFile in 'DragDropFile.pas',
52
  DragDropText in 'DragDropText.pas',
53
  DragDrop in 'DragDrop.pas',
54
  DragDropGraphics in 'DragDropGraphics.pas',
55
  DragDropInternet in 'DragDropInternet.pas',
56
  DragDropContext in 'DragDropContext.pas',
57
  DragDropHandler in 'DragDropHandler.pas',
58
  DragDropComObj in 'DragDropComObj.pas',
59
  DropHandler in 'DropHandler.pas';
60
 
61
end.