summaryrefslogtreecommitdiff
path: root/plugins/Watrack/i_options.inc
diff options
context:
space:
mode:
authorAlexey Kulakov <panda75@bk.ru>2014-04-24 14:55:20 +0000
committerAlexey Kulakov <panda75@bk.ru>2014-04-24 14:55:20 +0000
commitc3a168743616db6606702db5ad0fecab4dfee3da (patch)
tree523ef1399093917f3565d769826ceecb7eb2ef6c /plugins/Watrack/i_options.inc
parent90ad600cb38a04c9272a3599c72d6559c822b155 (diff)
Miranda API update
Watrack refactoring, API changes git-svn-id: http://svn.miranda-ng.org/main/trunk@9068 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack/i_options.inc')
-rw-r--r--plugins/Watrack/i_options.inc11
1 files changed, 3 insertions, 8 deletions
diff --git a/plugins/Watrack/i_options.inc b/plugins/Watrack/i_options.inc
index 16d1af242f..16a70ccd89 100644
--- a/plugins/Watrack/i_options.inc
+++ b/plugins/Watrack/i_options.inc
@@ -23,12 +23,10 @@ const
opt_CheckTime :PAnsiChar = 'checktime';
opt_coverpaths:PAnsiChar = 'coverpaths';
opt_Implantant:PAnsiChar = 'useimplantant';
- opt_MTHCheck :PAnsiChar = 'mthcheck';
opt_KeepOld :PAnsiChar = 'keepold';
opt_mmkeyemu :PAnsiChar = 'mmkeyemu';
opt_CheckAll :PAnsiChar = 'checkall';
-
- opt_ThTimeout :PAnsiChar = 'thtimeout';
+ opt_CheckUnkn :PAnsiChar = 'checkunknown';
procedure _loadopt;
begin
@@ -40,9 +38,9 @@ begin
globhotkey :=DBReadWord(0,PluginShort,opt_HotKey ,defhotkey);
CheckTime :=DBReadByte(0,PluginShort,opt_CheckTime ,BST_CHECKED);
UseImplant :=DBReadByte(0,PluginShort,opt_Implantant,BST_UNCHECKED);
- MTHCheck :=DBReadByte(0,PluginShort,opt_MTHCheck ,BST_CHECKED);
KeepOld :=DBReadByte(0,PluginShort,opt_KeepOld ,BST_UNCHECKED);
CheckAll :=DBReadByte(0,PluginShort,opt_CheckAll ,BST_UNCHECKED);
+ CheckUnknown :=DBReadByte(0,PluginShort,opt_CheckUnkn ,BST_UNCHECKED);
mTimer :=DBReadWord(0,PluginShort,opt_Timer ,3000);
if mTimer<500 then
mTimer:=mTimer*1000;
@@ -50,20 +48,17 @@ begin
CoverPaths :=DBReadUnicode(0,PluginShort,opt_coverpaths,defcoverpaths);
mmkeyemu :=DBReadByte (0,PluginShort,opt_mmkeyemu ,BST_UNCHECKED);
-
- TimeoutForThread:=DBReadByte(0,PluginShort,opt_ThTimeout,SysWin.ThreadTimeout);
end;
procedure _saveopt;
begin
DBWriteWord(0,PluginShort,opt_InsHotKey ,inshotkey);
DBWriteWord(0,PluginShort,opt_HotKey ,globhotkey);
- DBWriteByte(0,PluginShort,opt_ThTimeout ,TimeoutForThread);
DBWriteByte(0,PluginShort,opt_CheckTime ,CheckTime);
DBWriteByte(0,PluginShort,opt_Implantant,UseImplant);
- DBWriteByte(0,PluginShort,opt_MTHCheck ,MTHCheck);
DBWriteByte(0,PluginShort,opt_KeepOld ,KeepOld);
DBWriteByte(0,PluginShort,opt_CheckAll ,CheckAll);
+ DBWriteByte(0,PluginShort,opt_CheckUnkn ,CheckUnknown);
DBWriteWord(0,PluginShort,opt_Timer ,mTimer);
DBWriteWord(0,PluginShort,opt_UserCP ,UserCP);