Descent3/mac/MACTASK.CPP

9 lines
264 B
C++
Raw Normal View History

2024-04-16 03:43:29 +00:00
#include "DDAccess.h"
#include "TaskSystem.h"
#include "pserror.h"
2024-04-16 18:56:40 +00:00
osMutex::osMutex() {}
osMutex::~osMutex() { Destroy(); }
bool osMutex::Create() { return false; }
void osMutex::Destroy() {}
bool osMutex::Acquire(int timeout) {}
void osMutex::Release() {}