From b880db8491271b4bd4aa87c2dd79b5e3c3dde6cf Mon Sep 17 00:00:00 2001 From: watcherhd Date: Thu, 17 Nov 2011 18:46:23 +0000 Subject: added: ieview, imo2sproxy, skype git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@175 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb --- skype/pthread.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 skype/pthread.h (limited to 'skype/pthread.h') diff --git a/skype/pthread.h b/skype/pthread.h new file mode 100644 index 0000000..1c9f3e3 --- /dev/null +++ b/skype/pthread.h @@ -0,0 +1,26 @@ +/* + * $Id: pthread.h,v 1.3 2003/10/05 04:03:05 gena01 Exp $ + * + * Skype Miranda Plugin + * + * Authors: Gennady Feldman (aka Gena01) + * Laurent Marechal (aka Peorth) + * + * Code borrowed for Skype plugin. Fixed to compile on Mingw by G.Feldman + * Original Copyright (c) 2003 Robert Rainwater + * + * This code is under GPL and is based on AIM, MSN and Miranda source code. + * I want to thank Robert Rainwater and George Hazan for their code and support + * and for answering some of my questions during development of this plugin. + */ +#ifndef PTHREAD_H +#define PTHREAD_H + +unsigned long pthread_create(void (*threadcode) (void *), void *arg); +typedef CRITICAL_SECTION pthread_mutex_t; +#define pthread_mutex_init(pmutex) InitializeCriticalSection(pmutex) +#define pthread_mutex_destroy(pmutex) DeleteCriticalSection(pmutex) +#define pthread_mutex_lock(pmutex) EnterCriticalSection(pmutex) +#define pthread_mutex_unlock(pmutex) LeaveCriticalSection(pmutex) + +#endif -- cgit v1.2.3