| 123456789101112131415161718192021 |
- unit VampyreImagingPackageExtRegister;
- {$warn 5023 off : no warning about unused units}
- interface
- uses
- ImagingComponents;
- procedure Register;
- implementation
- procedure Register;
- begin
- // Register file formats for TGraphic again (once done when registering base package) to
- // have the additional file formats. RegisterTypes can handle being called
- // more than once and registers only the new formats to LCL.
- ImagingComponents.RegisterTypes;
- end;
- end.
|