mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-05 23:00:03 -04: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() {} |