-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDPE.DPR
39 lines (36 loc) · 1.05 KB
/
DPE.DPR
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
program dpe;
uses
Forms,
dpemform in 'dpemform.pas' {DPEMain},
photo in 'photo.pas' {FPhoto},
newimg in 'Newimg.pas' {NewImgF},
splash in 'splash.pas' {SplashScreen},
FS_UN in 'FS_UN.pas' {FullSCR},
rotun in 'rotun.pas' {RotateDLG},
adclrun in 'adclrun.pas' {ADCLRDLG},
ldun in 'Ldun.pas' {LDDialog},
solaun in 'solaun.pas' {SolarizeDLG},
abox in 'Abox.pas' {AboutBox},
ffpun in 'ffpun.pas' {ffpfrm},
rszun in 'rszun.pas' {rszDLG},
epun in 'epun.pas' {epfrm},
crszun in 'crszun.pas' {crszfrm},
ablendun in 'ablendun.pas' {ablendDLG},
MFImp in 'Mfimp.pas' {WMFImp},
btnzun in 'btnzun.pas' {btneffdlg},
adbrdrun in 'adbrdrun.pas' {AddBRDRDLG},
prun in 'prun.pas' {prDLG},
conun in 'conun.pas' {AContrastDLG},
ccun in 'ccun.pas' {CCDLG};
{$R *.RES}
begin
SplashScreen := TSplashScreen.Create(Application);
SplashScreen.Show;
SplashScreen.Update;
Application.Title := 'Digital Photo Editor';
Application.Initialize;
Application.CreateForm(TDPEMain, DPEMain);
SplashScreen.Hide;
SplashScreen.Free;
Application.Run;
end.