Subversion Repositories decoder

Rev

Blame | Last modification | View Log | RSS feed

  1. package DragDropD3;
  2.  
  3. {$R *.RES}
  4. {$R 'DropSource.dcr'}
  5. {$R 'DropTarget.dcr'}
  6. {$R 'DropBMPSource.dcr'}
  7. {$R 'DropBMPTarget.dcr'}
  8. {$R 'DropURLSource.dcr'}
  9. {$R 'DropURLTarget.dcr'}
  10. {$R 'DropPIDLSource.dcr'}
  11. {$R 'DropPIDLTarget.dcr'}
  12. {$ALIGN ON}
  13. {$ASSERTIONS ON}
  14. {$BOOLEVAL OFF}
  15. {$DEBUGINFO ON}
  16. {$EXTENDEDSYNTAX ON}
  17. {$IMPORTEDDATA ON}
  18. {$IOCHECKS ON}
  19. {$LOCALSYMBOLS ON}
  20. {$LONGSTRINGS ON}
  21. {$OPENSTRINGS ON}
  22. {$OPTIMIZATION ON}
  23. {$OVERFLOWCHECKS ON}
  24. {$RANGECHECKS ON}
  25. {$REFERENCEINFO OFF}
  26. {$SAFEDIVIDE OFF}
  27. {$STACKFRAMES OFF}
  28. {$TYPEDADDRESS OFF}
  29. {$VARSTRINGCHECKS ON}
  30. {$WRITEABLECONST ON}
  31. {$MINENUMSIZE 1}
  32. {$IMAGEBASE $00400000}
  33. {$DESCRIPTION 'Drag and Drop Component Suite'}
  34. {$DESIGNONLY}
  35. {$IMPLICITBUILD ON}
  36.  
  37. requires
  38.   vcl30;
  39.  
  40. contains
  41.   DropSource,
  42.   DropTarget,
  43.   DropBMPSource,
  44.   DropBMPTarget,
  45.   DropURLSource,
  46.   DropURLTarget,
  47.   DropPIDLSource,
  48.   DropPIDLTarget;
  49.  
  50. end.
  51.