From: Mikko L. <laz...@us...> - 2004-06-13 19:54:51
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14886 Modified Files: Mutex.h Log Message: moved all OS specific header to source file Index: Mutex.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/Mutex.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Mutex.h 13 Jun 2004 19:42:16 -0000 1.4 --- Mutex.h 13 Jun 2004 19:54:43 -0000 1.5 *************** *** 47,58 **** #include <rtk/Export.h> - #ifdef _WIN32 - # ifndef _WIN32_WCE - # include <process.h> - # endif - # include <windows.h> - # include <limits.h> - #endif - namespace Rtk { --- 47,50 ---- *************** *** 74,78 **** void Destroy(); ! void *_prv; }; // Mutex class --- 66,70 ---- void Destroy(); ! void *_prv; // OS specific context }; // Mutex class |