summaryrefslogtreecommitdiff
path: root/protocols/Teams/src/main.cpp
blob: 07778b24050bedb7d252885179f7094d3e71d721 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
Copyright (C) 2025 Miranda NG team (https://miranda-ng.org)

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation version 2
of the License.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#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;
}