#include "FTTMutex.h" #include "str_conv.h" //------------------------------------------------------------------------------------------------- //自己加的无参构造 FTTMutex::FTTMutex() { } //------------------------------------------------------------------------------------------------- //0026D248 //^_^ FTTMutex::FTTMutex(char const* name, EFTTProtocol eProtocol) { // loc_26D278 } //------------------------------------------------------------------------------------------------- //0026D27E //^_^ FTTMutex::~FTTMutex() { } //------------------------------------------------------------------------------------------------- //0026D28A //^_^ bool FTTMutex::Lock() { LOGE("FTTMutex::Lock%p",this); return rand(); } //------------------------------------------------------------------------------------------------- //0026D294 //^_^ bool FTTMutex::TryLock() { return 0; } //------------------------------------------------------------------------------------------------- //0026D2A2 //^_^ void FTTMutex::Unlock() { LOGE("FTTMutex::Lock%p",this); return ; } //-------------------------------------------------------------------------------------------------