41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
(* ------------------------------------------------------------------------------
|
|
ResourceExtractor : 1.0
|
|
Copyright © 1986-2012 : Copyright Adirondack Software & Graphics
|
|
Last Modification : 04-05-2012
|
|
Source File : uViewIcons.pas
|
|
Compiler : Delphi 2010
|
|
Operating System : Windows 7
|
|
This file is copyright (C) W W Miller, 1986-2012.
|
|
It may be used without restriction. This code distributed on an "AS IS"
|
|
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
|
|
------------------------------------------------------------------------------ *)
|
|
program ImageEnResourceExtracter;
|
|
|
|
uses
|
|
Forms,
|
|
uResourceExtractor in 'uResourceExtractor.pas' {FormResExtractor},
|
|
uViewIcons in 'uViewIcons.pas' {FormViewIcons},
|
|
usplash in 'usplash.pas' {FormSplash},
|
|
uAbout in 'uAbout.pas' {FormAbout};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
|
|
FormSplash := TFormSplash.Create( Application );
|
|
try
|
|
|
|
Application.Initialize;
|
|
Application.Title := 'Resource Extractor';
|
|
|
|
Application.CreateForm(TFormResExtractor, FormResExtractor);
|
|
|
|
finally
|
|
FormSplash.Release;
|
|
end;
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|