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
|
{}
const
optLogin :pAnsiChar='myshows/login';
optPassword:pAnsiChar='myshows/password';
optTries :pAnsiChar='myshows/tries';
// optTimeout :PAnsiChar='myshows/timeout';
optScrobPos:pAnsiChar='myshows/scrobpos';
optScrobble:pAnsiChar='myshows/scrobble';
procedure SaveOpt;
begin
DBWriteString(0,PluginShort,optPassword,msh_password);
DBWriteString(0,PluginShort,optLogin ,msh_login);
DBWriteByte (0,PluginShort,optTries ,msh_tries);
DBWriteByte (0,PluginShort,optScrobPos,msh_scrobpos);
DBWriteByte (0,PluginShort,optScrobble,msh_on and 1);
end;
procedure LoadOpt;
begin
// msh_timeout :=DBReadWord(0,PluginShort,optTimeout ,0);
msh_scrobpos:=DBReadByte(0,PluginShort,optScrobPos,30);
msh_tries :=DBReadByte(0,PluginShort,optTries ,3);
msh_on :=DBReadByte(0,PluginShort,optScrobble,0);
mFreeMem(msh_login ); msh_login :=DBReadString(0,PluginShort,optLogin);
mFreeMem(msh_password); msh_password:=DBReadString(0,PluginShort,optPassword);
if (msh_login=nil) or (msh_password=nil) then
CallService(MS_POPUP_SHOWMESSAGEW,
WPARAM(TranslateW('Don''t forget to enter Login and Password to use MyShows service')),
SM_WARNING);
end;
procedure FreeOpt;
begin
mFreeMem(msh_login);
mFreeMem(msh_password);
end;
|