00001 #ifndef _WINNT_MUTEX_H_ 00002 #define _WINNT_MUTEX_H_ 00003 00004 #include "OSDependent/OSDependent.h" 00005 00006 /* 00007 * WinNT implementation of a mutex. 00008 */ 00009 class ClassExport Mutex { 00010 protected: 00011 CRITICAL_SECTION _lock; 00012 00013 public: 00014 Mutex(); 00015 ~Mutex(); 00016 void lock(); 00017 void unlock(); 00018 }; 00019 00020 #endif // _WINNT_MUTEX_H_
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001