// Platform skeleton for EterLib/Mutex.h (40250 EterLib/Mutex.cpp), generated by platform_stub.py. // Every MT_PLATFORM_STUB() body is unimplemented: replace it with the platform implementation. #include "EterLib/StdAfx.h" #include "EterLib/Mutex.h" #include "../PlatformStub.h" Mutex::Mutex() { MT_PLATFORM_STUB(); } Mutex::~Mutex() { MT_PLATFORM_STUB(); } auto Mutex::Lock() -> void { MT_PLATFORM_STUB(); } auto Mutex::Unlock() -> void { MT_PLATFORM_STUB(); } auto Mutex::Trylock() -> bool { MT_PLATFORM_STUB(); return mt_platform_stub_return(); }