| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package DragDropD3;
- {$R *.RES}
- {$R 'DropSource.dcr'}
- {$R 'DropTarget.dcr'}
- {$R 'DropBMPSource.dcr'}
- {$R 'DropBMPTarget.dcr'}
- {$R 'DropURLSource.dcr'}
- {$R 'DropURLTarget.dcr'}
- {$R 'DropPIDLSource.dcr'}
- {$R 'DropPIDLTarget.dcr'}
- {$ALIGN ON}
- {$ASSERTIONS ON}
- {$BOOLEVAL OFF}
- {$DEBUGINFO ON}
- {$EXTENDEDSYNTAX ON}
- {$IMPORTEDDATA ON}
- {$IOCHECKS ON}
- {$LOCALSYMBOLS ON}
- {$LONGSTRINGS ON}
- {$OPENSTRINGS ON}
- {$OPTIMIZATION ON}
- {$OVERFLOWCHECKS ON}
- {$RANGECHECKS ON}
- {$REFERENCEINFO OFF}
- {$SAFEDIVIDE OFF}
- {$STACKFRAMES OFF}
- {$TYPEDADDRESS OFF}
- {$VARSTRINGCHECKS ON}
- {$WRITEABLECONST ON}
- {$MINENUMSIZE 1}
- {$IMAGEBASE $00400000}
- {$DESCRIPTION 'Drag and Drop Component Suite'}
- {$DESIGNONLY}
- {$IMPLICITBUILD ON}
- requires
- vcl30;
- contains
- DropSource,
- DropTarget,
- DropBMPSource,
- DropBMPTarget,
- DropURLSource,
- DropURLTarget,
- DropPIDLSource,
- DropPIDLTarget;
- end.
|