From d978a71c913c7213158d7014e43fe6535c60dcc9 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 11 May 2015 14:28:21 +0000 Subject: minus CreateThread git-svn-id: http://svn.miranda-ng.org/main/trunk@13533 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/CmdLine/src/mimcmd_handlers.cpp | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'plugins/CmdLine/src/mimcmd_handlers.cpp') diff --git a/plugins/CmdLine/src/mimcmd_handlers.cpp b/plugins/CmdLine/src/mimcmd_handlers.cpp index 0d1fa34368..97266a83b4 100644 --- a/plugins/CmdLine/src/mimcmd_handlers.cpp +++ b/plugins/CmdLine/src/mimcmd_handlers.cpp @@ -1423,15 +1423,13 @@ int ContactMatchSearch(MCONTACT hContact, char *contact, char *id, char *account return matches; } -DWORD WINAPI OpenMessageWindowThread(void *data) +void __cdecl OpenMessageWindowThread(void *data) { MCONTACT hContact = (MCONTACT) data; if (hContact) { CallServiceSync(MS_MSG_SENDMESSAGET, hContact, 0); } - - return 0; } @@ -1493,10 +1491,7 @@ void HandleContactsCommand(PCommand command, TArgument *argv, int argc, PReply r char *contact = GetContactName(hContact, protocol); char *id = GetContactID(hContact, protocol); if (ContactMatchSearch(hContact, contact, id, protocol, &argv[3], argc - 3)) - { - DWORD threadID; - HANDLE thread = CreateThread(NULL, NULL, OpenMessageWindowThread, (void*)hContact, NULL, &threadID); - } + HANDLE thread = mir_forkthread(OpenMessageWindowThread, (void*)hContact); free(contact); free(id); @@ -1508,10 +1503,8 @@ void HandleContactsCommand(PCommand command, TArgument *argv, int argc, PReply r for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) { MEVENT hUnreadEvent = db_event_firstUnread(hContact); - if (hUnreadEvent != NULL) { - DWORD threadID; - HANDLE thread = CreateThread(NULL, NULL, OpenMessageWindowThread, (void*)hContact, NULL, &threadID); - } + if (hUnreadEvent != NULL) + HANDLE thread = mir_forkthread(OpenMessageWindowThread, (void*)hContact); } } else HandleWrongParametersCount(command, reply); -- cgit v1.2.3