00001 #ifndef __THREADING_H 00002 #define __THREADING_H 00003 00004 00005 void LockMutex(void *mutex); 00006 void UnLockMutex(void *mutex); 00007 void InitMutex(void *mutex); 00008 void DeleteMutex(void *mutex); 00009 00010 00011 00012 #endif