Subversion Repositories decoder

Rev

Blame | Last modification | View Log | RSS feed

  1. package DragDropD4;
  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. {$ALIGN ON}
  16. {$ASSERTIONS ON}
  17. {$BOOLEVAL OFF}
  18. {$DEBUGINFO ON}
  19. {$EXTENDEDSYNTAX ON}
  20. {$IMPORTEDDATA ON}
  21. {$IOCHECKS ON}
  22. {$LOCALSYMBOLS OFF}
  23. {$LONGSTRINGS ON}
  24. {$OPENSTRINGS ON}
  25. {$OPTIMIZATION OFF}
  26. {$OVERFLOWCHECKS ON}
  27. {$RANGECHECKS ON}
  28. {$REFERENCEINFO ON}
  29. {$SAFEDIVIDE OFF}
  30. {$STACKFRAMES OFF}
  31. {$TYPEDADDRESS OFF}
  32. {$VARSTRINGCHECKS ON}
  33. {$WRITEABLECONST ON}
  34. {$MINENUMSIZE 1}
  35. {$IMAGEBASE $00410000}
  36. {$DESCRIPTION 'Drag and Drop Component Suite'}
  37. {$DESIGNONLY}
  38. {$IMPLICITBUILD OFF}
  39.  
  40. requires
  41.   Vcl40;
  42.  
  43. contains
  44.   DropSource in 'DropSource.pas',
  45.   DropTarget in 'DropTarget.pas',
  46.   DragDropPIDL in 'DragDropPIDL.pas',
  47.   DragDropFormats in 'DragDropFormats.pas',
  48.   DragDropFile in 'DragDropFile.pas',
  49.   DragDropText in 'DragDropText.pas',
  50.   DragDrop in 'DragDrop.pas',
  51.   DragDropGraphics in 'DragDropGraphics.pas',
  52.   DropSource3 in 'DropSource3.pas',
  53.   DropFileSource3 in 'DropFileSource3.pas',
  54.   DragDropInternet in 'DragDropInternet.pas',
  55.   DragDropDesign in 'DragDropDesign.pas',
  56.   DropComboTarget in 'DropComboTarget.pas',
  57.   DragDropHandler in 'DragDropHandler.pas',
  58.   DragDropContext in 'DragDropContext.pas',
  59.   DragDropComObj in 'DragDropComObj.pas';
  60.  
  61. end.
  62.