blob: 541b776e150dd338b73dbd542c3d09cc3f1007cc (
plain)
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
|
#include "skype_proto.h"
int CSkypeProto::OnModulesLoaded(WPARAM, LPARAM)
{
this->HookEvent(ME_OPT_INITIALISE, &CSkypeProto::OnOptionsInit);
this->HookEvent(ME_USERINFO_INITIALISE, &CSkypeProto::OnUserInfoInit);
this->login = this->GetSettingString(SKYPE_SETTINGS_LOGIN);
this->rememberPassword = this->GetSettingByte("RememberPassword") > 0;
return 0;
}
int CSkypeProto::OnPreShutdown(WPARAM, LPARAM)
{
this->SetStatus(ID_STATUS_OFFLINE);
return 0;
}
int CSkypeProto::OnContactDeleted(WPARAM wParam, LPARAM lParam)
{
this->RevokeAuth(wParam, lParam);
return 0;
}
|