forked from alphaonex86/Supercopier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SCConfig.lpr
62 lines (52 loc) · 1.56 KB
/
SCConfig.lpr
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
This file is part of SuperCopier.
SuperCopier is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
SuperCopier is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
}
program SCConfig;
{$MODE Delphi}
uses
messages,LCLIntf, LCLType, LMessages, Windows,
SCConfigShared in 'SCConfigShared.pas';
{$R SC2Config.res}
var param:string;
handle:THandle;
begin
param:=ParamStr(1);
handle:=FindWindow(nil,SC2_MAINFORM_CAPTION);
if handle=0 then
begin
MessageBox(0,'SuperCopier must be running to use this','SuperCopier is not running',MB_ICONWARNING);
Halt;
end;
if param='config' then
begin
PostMessage(handle,WM_OPENDIALOG,OD_CONFIG,0);
end
else if param='about' then
begin
PostMessage(handle,WM_OPENDIALOG,OD_ABOUT,0);
end
else if param='quit' then
begin
PostMessage(handle,WM_OPENDIALOG,OD_QUIT,0);
end
else if param='onoff' then
begin
PostMessage(handle,WM_OPENDIALOG,OD_ONOFF,0);
end
else if param='menu' then
begin
PostMessage(handle,WM_OPENDIALOG,OD_SHOWMENU,0);
end
else // action par dйfaut
begin
PostMessage(handle,WM_OPENDIALOG,OD_SHOWMENU,0);
end;
end.