summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_events.cpp
blob: d899e593b86e1567b6366ca4d8f48d931c60f858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "skype_proto.h"

//void IconsLoad();

int CSkypeProto::OnModulesLoaded(WPARAM, LPARAM)
{
	//IconsLoad();
	this->HookEvent(ME_OPT_INITIALISE, &CSkypeProto::OnOptionsInit);

	return 0;
}

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

	return 0;
}