Subversion Repositories decoder

Rev

Blame | Last modification | View Log | RSS feed

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