Needed prototypes for f_mutexLock and f_mutexUnlock on Linux.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@350 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-04-18 16:53:33 +00:00
parent a3112a1cd3
commit 4e4ebe3bc7

View File

@@ -456,6 +456,12 @@
typedef F_MUTEX * F_MUTEX_p;
#define F_MUTEX_NULL NULL
void f_mutexLock(
F_MUTEX hMutex);
void f_mutexUnlock(
F_MUTEX hMutex);
typedef struct
{
pthread_mutex_t lock;