blob: ef97109d6febc8b49ee3687d53175d4dadbd07c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "skype_proto.h"
int CSkypeProto::OnModulesLoaded(WPARAM, LPARAM)
{
this->HookEvent(ME_OPT_INITIALISE, &CSkypeProto::OnOptionsInit);
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;
}
|