| 1234567891011121314151617181920212223242526272829303132 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- USERES("dragdropC3.res");
- USEPACKAGE("vcl35.bpi");
- USEUNIT("DropSource.pas");
- USERES("DropSource.dcr");
- USEUNIT("DropURLTarget.pas");
- USERES("DropURLTarget.dcr");
- USEUNIT("DropBMPTarget.pas");
- USERES("DropBMPTarget.dcr");
- USEUNIT("DropPIDLSource.pas");
- USERES("DropPIDLSource.dcr");
- USEUNIT("DropPIDLTarget.pas");
- USERES("DropPIDLTarget.dcr");
- USEUNIT("DropTarget.pas");
- USERES("DropTarget.dcr");
- USEUNIT("DropURLSource.pas");
- USERES("DropURLSource.dcr");
- USEUNIT("DropBMPSource.pas");
- USERES("DropBMPSource.dcr");
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- //---------------------------------------------------------------------------
- // Package source.
- //---------------------------------------------------------------------------
- int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
- {
- return 1;
- }
- //---------------------------------------------------------------------------
|