From 83310365c69bd40365ee0ae0e16c99c28e24cd0b Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 19 Jun 2015 14:24:12 +0000 Subject: - all static protocol services replaced with functions; - m_protomod.h removed as useless git-svn-id: http://svn.miranda-ng.org/main/trunk@14260 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/CmdLine/src/mimcmd_handlers.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/CmdLine') diff --git a/plugins/CmdLine/src/mimcmd_handlers.cpp b/plugins/CmdLine/src/mimcmd_handlers.cpp index 64ab262bf7..6931db6137 100644 --- a/plugins/CmdLine/src/mimcmd_handlers.cpp +++ b/plugins/CmdLine/src/mimcmd_handlers.cpp @@ -74,7 +74,7 @@ int AccountName2Protocol(const char *accountName, OUT char *uniqueProtocolName, { int count; PROTOACCOUNT **accounts = NULL; - ProtoEnumAccounts(&count, &accounts); + Proto_EnumAccounts(&count, &accounts); strncpy_s(uniqueProtocolName, length, accountName, _TRUNCATE); @@ -217,7 +217,7 @@ void HandleStatusCommand(PCommand command, TArgument *argv, int argc, PReply rep int count; PROTOACCOUNT **accounts = NULL; - ProtoEnumAccounts(&count, &accounts); + Proto_EnumAccounts(&count, &accounts); char pn[128]; @@ -328,7 +328,7 @@ void HandleAwayMsgCommand(PCommand command, TArgument *argv, int argc, PReply re char *awayMsg = argv[2]; int count = 0; PROTOACCOUNT **accounts = NULL; - ProtoEnumAccounts(&count, &accounts); + Proto_EnumAccounts(&count, &accounts); CMStringA szReply; int i; @@ -1250,7 +1250,7 @@ void HandleProxyCommand(PCommand command, TArgument *argv, int argc, PReply repl int count = 0; PROTOACCOUNT **accounts = NULL; - ProtoEnumAccounts(&count, &accounts); + Proto_EnumAccounts(&count, &accounts); int i; int global = (mir_strcmp(protocol, "GLOBAL") == 0); -- cgit v1.2.3