-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
WinXCorners.dpr
46 lines (42 loc) · 1.07 KB
/
WinXCorners.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
40
41
42
43
44
45
46
program WinXCorners;
{.$R *.dres}
uses
Forms,
Windows,
Main in 'Main.pas' {frmMain},
frmSettings in 'frmSettings.pas' {frmTrayPopup},
XCombobox in 'XCombobox.pas',
osdgui in 'osdgui.pas' {frmOSD},
frmAdvanced in 'frmAdvanced.pas' {frmAdvSettings},
functions in 'functions.pas',
hotkeyhelper in 'hotkeyhelper.pas',
settingsHelper in 'settingsHelper.pas',
conditionsHelper in 'conditionsHelper.pas';
{$R *.res}
{$R PNGIMAGE_1.res}
{$R PNGIMAGE_2.res}
{$R ICON_1.res}
{$R ICON_2.res}
{$R ICON_3.res}
//{$ifdef ver360}
{$R Manifest1.res}
//{$endif}
var
AppHandle: HWND;
begin
AppHandle := FindWindow('WinXCorners', nil);
if AppHandle > 0 then
begin
// Application.Terminate;
Exit;
end;
Application.Initialize;
Application.ShowMainForm := False;
// Application.MainFormOnTaskbar := False;
Application.Title := 'WinXCorners';
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmTrayPopup, frmTrayPopup);
Application.CreateForm(TfrmOSD, frmOSD);
Application.CreateForm(TfrmAdvSettings, frmAdvSettings);
Application.Run;
end.