summaryrefslogtreecommitdiff
path: root/protocols/Dummy/src/main.cpp
blob: f50e01a2b6dba484f46a44ba3db838d941e20a76 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
Copyright (c) 2014-17 Robert Pösel, 2017-23 Miranda NG team

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"
#include "version.h"

CMPlugin	g_plugin;

PLUGININFOEX pluginInfoEx =
{
	sizeof(PLUGININFOEX),
	__PLUGIN_NAME,
	PLUGIN_MAKE_VERSION(__MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM),
	__DESCRIPTION,
	__AUTHOR,
	__COPYRIGHT,
	__AUTHORWEB,
	UNICODE_AWARE,
	// {2A1081D1-AEE3-4091-B70D-AE46D09F9A7F}
	{ 0x2a1081d1, 0xaee3, 0x4091, {0xb7, 0xd, 0xae, 0x46, 0xd0, 0x9f, 0x9a, 0x7f}}
};

CMPlugin::CMPlugin() :
	ACCPROTOPLUGIN<CDummyProto>("Dummy", pluginInfoEx)
{
	int id = db_get_b(0, m_szModuleName, DUMMY_ID_TEMPLATE, -1);
	if (id < 0 || id >= _countof(templates))
		SetUniqueId(ptrA(db_get_sa(0, m_szModuleName, DUMMY_ID_SETTING)));
	else
		SetUniqueId(templates[id].setting);
}

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

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

/////////////////////////////////////////////////////////////////////////////////////////
// OnLoad - initialize the plugin instance

int CMPlugin::Load()
{
	return 0;
}

/////////////////////////////////////////////////////////////////////////////////////////
// stubs for obsoleted protocols

struct CMPluginAim : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginAim() : ACCPROTOPLUGIN<CDummyProto>("AIM", pluginInfoEx)
	{
		SetUniqueId("SN");
	}
}
static g_pluginAim;

struct CMPluginDiscord : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginDiscord() : ACCPROTOPLUGIN<CDummyProto>("Discord", pluginInfoEx)
	{
		SetUniqueId("id");
	}
}
static g_pluginDiscord;

struct CMPluginYahoo : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginYahoo() : ACCPROTOPLUGIN<CDummyProto>("YAHOO", pluginInfoEx)
	{
		SetUniqueId("yahoo_id");
	}
}
static g_pluginYahoo;

struct CMPluginTlen : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginTlen() : ACCPROTOPLUGIN<CDummyProto>("TLEN", pluginInfoEx)
	{
		SetUniqueId("jid");
	}
}
static g_pluginTlen;

struct CMPluginXFire : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginXFire() : ACCPROTOPLUGIN<CDummyProto>("XFire", pluginInfoEx)
	{
		SetUniqueId("Username");
	}
}
static g_pluginXFire;

struct CMPluginWhatsapp : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginWhatsapp() : ACCPROTOPLUGIN<CDummyProto>("WhatsApp", pluginInfoEx)
	{
		SetUniqueId("ID");
	}
}
static g_pluginWhatsapp;

struct CMPluginMsn : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginMsn() : ACCPROTOPLUGIN<CDummyProto>("MSN", pluginInfoEx)
	{
		SetUniqueId("wlid");
	}
}
static g_pluginMsn;

struct CMPluginOmegle : public ACCPROTOPLUGIN<CDummyProto>
{
	CMPluginOmegle() : ACCPROTOPLUGIN<CDummyProto>("Omegle", pluginInfoEx)
	{
		SetUniqueId("nick");
	}
}
static g_pluginOmegle;