summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/VypressChat/pthread.c
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2014-04-04 14:27:04 +0000
committerRobert Pösel <robyer@seznam.cz>2014-04-04 14:27:04 +0000
commitc7181615b01d42717df5a4cc557995fe8970e555 (patch)
tree829b619062f5630b15701a5faaaf16019b893ae6 /plugins/!NotAdopted/VypressChat/pthread.c
parente08dd78ccf05f9d5d768e5436fcfc5e8126356fe (diff)
Partial adopttion of VypressChat and WinPopup plugins
git-svn-id: http://svn.miranda-ng.org/main/trunk@8849 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/VypressChat/pthread.c')
-rw-r--r--plugins/!NotAdopted/VypressChat/pthread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/!NotAdopted/VypressChat/pthread.c b/plugins/!NotAdopted/VypressChat/pthread.c
index 062ec1769b..a2f79da159 100644
--- a/plugins/!NotAdopted/VypressChat/pthread.c
+++ b/plugins/!NotAdopted/VypressChat/pthread.c
@@ -32,13 +32,13 @@ void pthread_r(struct pthread_arg *fa)
{
void (*callercode) (void *) = fa->threadcode;
void *arg = fa->arg;
- CallService(MS_SYSTEM_THREAD_PUSH, 0, 0);
+ Thread_Push(0, 0);
SetEvent(fa->hEvent);
/* __try { */
callercode(arg);
/* } */
/* __finally { */
- CallService(MS_SYSTEM_THREAD_POP, 0, 0);
+ Thread_Pop();
/* } */
}