diff options
author | dartraiden <wowemuh@gmail.com> | 2024-08-21 01:19:30 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-08-21 01:20:51 +0300 |
commit | aafdcb6859403d1786b9435322336e1a6e7cfcea (patch) | |
tree | 61f1ccdbea96ab9a69912b83692cfce6d70226db /protocols/Dummy | |
parent | 3ebad9395945c3f4882054f442aa8211294355ed (diff) |
MRA: deprecate protocol
Diffstat (limited to 'protocols/Dummy')
-rw-r--r-- | protocols/Dummy/src/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/protocols/Dummy/src/main.cpp b/protocols/Dummy/src/main.cpp index 0dccbb7529..1374ed9944 100644 --- a/protocols/Dummy/src/main.cpp +++ b/protocols/Dummy/src/main.cpp @@ -142,3 +142,12 @@ struct CMPluginIcq : public ACCPROTOPLUGIN<CDummyProto> }
}
static g_pluginIcq;
+
+struct CMPluginMra : public ACCPROTOPLUGIN<CDummyProto>
+{
+ CMPluginMra() : ACCPROTOPLUGIN<CDummyProto>("MRA", pluginInfoEx)
+ {
+ SetUniqueId("aimId");
+ }
+}
+static g_pluginMra;
|