-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvdel_const.pas
51 lines (39 loc) · 984 Bytes
/
vdel_const.pas
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
unit VDel_Const;
{$mode delphi}
interface
uses
Classes, SysUtils;
const
// REG_Key ='Software\MaxM_BeppeG\VDel3\';
REG_Key ='VDel';
REG_cbConfirm ='Confirm';
REG_cbRecursive ='Recursive';
REG_cbRemoveDir ='RemoveDir';
REG_cbFill ='Fill';
REG_cbRename ='Rename';
REG_cbAttr ='Attr';
REG_cbDate ='Date';
REG_cbTime ='Time';
REG_cbResize ='Resize';
REG_edFill ='Fill Char';
REG_edRename ='Rename Char';
REG_edAttr ='Attr Val';
REG_edDate ='Date Val';
REG_edTime ='Time Val';
REG_edResize ='Resize Val';
faOnlyFile =$27;
faAnyDir =$1F;
bufSize =1024*1024;
Config_Options='vdel.ini';
var
ApplicationDir,
ConfigDir,
TempDir:String;
implementation
initialization
ApplicationDir :=ExtractFilePath(ParamStr(0));
ConfigDir :=GetAppConfigDir(False);
TempDir :=GetTempDir(False)+'VDel'+DirectorySeparator;
ForceDirectories(ConfigDir);
ForceDirectories(TempDir);
end.