DragDropD6.dpk 1.4 KB

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