summaryrefslogtreecommitdiff
path: root/protocols/Teams/src/main.cpp
blob: d2ac241040fb4dd2b52bb4bfdb4bf62f04ac6a1b (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include "stdafx.h"

CMPlugin g_plugin;

char g_szMirVer[100];
HANDLE g_hCallEvent;
HANDLE hExtraXStatus;

/////////////////////////////////////////////////////////////////////////////////////////

PLUGININFOEX pluginInfoEx =
{
	sizeof(PLUGININFOEX),
	__PLUGIN_NAME,
	PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
	__DESCRIPTION,
	__AUTHOR,
	__COPYRIGHT,
	__AUTHORWEB,
	UNICODE_AWARE,
	// {DCD56CEC-C61B-4275-A010-8C65C5B48815}
	{ 0xDCD56CEC, 0xC61B, 0x4275, { 0xa0, 0x10, 0x8c, 0x65, 0xc5, 0x84, 0x88, 0x15 }}
};

CMPlugin::CMPlugin() :
	ACCPROTOPLUGIN<CTeamsProto>("Teams", pluginInfoEx)
{
	SetUniqueId("id");
}

/////////////////////////////////////////////////////////////////////////////////////////

extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_PROTOCOL, MIID_LAST };

/////////////////////////////////////////////////////////////////////////////////////////

static IconItem iconList[] = {
	{ LPGEN("Protocol icon"),        "main",             IDI_TEAMS         },
	{ LPGEN("Create new chat icon"), "conference",       IDI_CONFERENCE    },
	{ LPGEN("Block user icon"),      "user_block",       IDI_BLOCKUSER     },
	{ LPGEN("Unblock user icon"),    "user_unblock",     IDI_UNBLOCKUSER   },
	{ LPGEN("Incoming call icon"),   "inc_call",         IDI_CALL          },
	{ LPGEN("Notification icon"),    "notify",           IDI_NOTIFY        },
	{ LPGEN("Error icon"),           "error",            IDI_ERRORICON     },
	{ LPGEN("Action icon"),          "me_action",        IDI_ACTION_ME     }

};

int CMPlugin::Load()
{
	registerIcon("Protocols/" MODULENAME, iconList, MODULENAME);

	g_hCallEvent = CreateHookableEvent(MODULENAME "/IncomingCall");
	return 0;
}

/////////////////////////////////////////////////////////////////////////////////////////

int CMPlugin::Unload()
{
	DestroyHookableEvent(g_hCallEvent);
	return 0;
}