diff options
author | George Hazan <george.hazan@gmail.com> | 2024-06-26 14:03:14 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-06-26 14:03:18 +0300 |
commit | 64f256afcd35245b22f1cf22eda32f9bc64d201e (patch) | |
tree | b4b8b00ca73856d5049fc258eca8f648f6b62479 /protocols | |
parent | 0c8f333b8cab96c11b19a09e7d227d8f6d153f57 (diff) |
for #4438 - ICQ support for Dummy
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Dummy/src/dummy_proto.cpp | 2 | ||||
-rw-r--r-- | protocols/Dummy/src/main.cpp | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/protocols/Dummy/src/dummy_proto.cpp b/protocols/Dummy/src/dummy_proto.cpp index 8e57c339f2..285cbe0f21 100644 --- a/protocols/Dummy/src/dummy_proto.cpp +++ b/protocols/Dummy/src/dummy_proto.cpp @@ -27,7 +27,7 @@ const ttemplate templates[] = { "EmLAN", "Nick", LPGEN("User name") },
{ "Facebook", "ID", LPGEN("Facebook ID") },
{ "GG", "UIN", LPGEN("Gadu-Gadu number") },
- { "ICQ", "UIN", LPGEN("User ID") },
+ { "ICQ", "aimId", LPGEN("User ID") },
{ "ICQCorp", "UIN", LPGEN("ICQ number") },
{ "IRC", "Nick", LPGEN("Nickname") },
{ "Jabber", "jid", LPGEN("JID") },
diff --git a/protocols/Dummy/src/main.cpp b/protocols/Dummy/src/main.cpp index 32d2bb682a..29a6cf6ef8 100644 --- a/protocols/Dummy/src/main.cpp +++ b/protocols/Dummy/src/main.cpp @@ -120,4 +120,13 @@ struct CMPluginOmegle : public ACCPROTOPLUGIN<CDummyProto> SetUniqueId("nick");
}
}
-static g_pluginOmegle;
\ No newline at end of file +static g_pluginOmegle;
+
+struct CMPluginIcq : public ACCPROTOPLUGIN<CDummyProto>
+{
+ CMPluginIcq() : ACCPROTOPLUGIN<CDummyProto>("ICQ", pluginInfoEx)
+ {
+ SetUniqueId("aimId");
+ }
+}
+static g_pluginIcq;
|