gctf2023/pwn/flipper/dist/utils/exe2minixfs/MutexLock.h

18 lines
339 B
C
Raw Normal View History

2023-11-24 18:11:34 +00:00
// WARNING: You are looking for a different MutexLock.h - this one is just for the exe2minixfs tool!
#ifdef EXE2MINIXFS
#pragma once
class Mutex;
class MutexLock
{
public:
MutexLock(Mutex &){};
MutexLock(Mutex &, bool){};
MutexLock(MutexLock const&) = delete;
MutexLock &operator=(MutexLock const&) = delete;
};
#endif