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/Dummy/src/main.cpp | |
parent | 0c8f333b8cab96c11b19a09e7d227d8f6d153f57 (diff) |
for #4438 - ICQ support for Dummy
Diffstat (limited to 'protocols/Dummy/src/main.cpp')
-rw-r--r-- | protocols/Dummy/src/main.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
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;
|