From 5591f1602e6171492f5e4620e67d3addeacad7aa Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 20 Sep 2011 16:08:52 +0200 Subject: VSTi plugin version. --- src/mutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mutex.h') diff --git a/src/mutex.h b/src/mutex.h index cf052ad..11704d4 100644 --- a/src/mutex.h +++ b/src/mutex.h @@ -28,7 +28,7 @@ #ifndef __PRACRO_MUTEX_H__ #define __PRACRO_MUTEX_H__ -#include +struct mutex_private_t; class Mutex { public: @@ -40,7 +40,7 @@ public: void unlock(); private: - pthread_mutex_t mutex; + struct mutex_private_t* prv; }; class MutexAutolock { -- cgit v1.2.3