mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
9 lines
264 B
C++
9 lines
264 B
C++
#include "DDAccess.h"
|
|
#include "TaskSystem.h"
|
|
#include "pserror.h"
|
|
osMutex::osMutex() {}
|
|
osMutex::~osMutex() { Destroy(); }
|
|
bool osMutex::Create() { return false; }
|
|
void osMutex::Destroy() {}
|
|
bool osMutex::Acquire(int timeout) {}
|
|
void osMutex::Release() {} |