summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_events.cpp
blob: 99d5c6bb6eb57d256f6fcb7a0b99a5df24b354a5 (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->login = this->GetSettingString(SKYPE_SETTINGS_LOGIN);
	this->rememberPassword = this->GetSettingByte("RememberPassword");

	return 0;
}

int CSkypeProto::OnPreShutdown(WPARAM, LPARAM)
{
	this->SetStatus(ID_STATUS_OFFLINE);

	return 0;
}

int CSkypeProto::OnContactDeleted(WPARAM wParam, LPARAM)
{
	this->RemoveContact((HANDLE)wParam);

	return 0;
}