windows support
This commit is contained in:
parent
f1cd631aae
commit
b9004acd79
16 changed files with 208 additions and 32 deletions
24
include/MDE/Core/Mutex.h
Normal file
24
include/MDE/Core/Mutex.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef __MDE_CORE_MUTEX_H__
|
||||
#define __MDE_CORE_MUTEX_H__
|
||||
|
||||
#include <MDE/MachDep.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef void* MDEMutex;
|
||||
|
||||
MDEMutex MDEMutexCreate(void);
|
||||
|
||||
void MDEMutexDestroy(MDEMutex mutex);
|
||||
|
||||
void MDEMutexLock(MDEMutex mutex);
|
||||
|
||||
void MDEMutexUnlock(MDEMutex mutex);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue