isle-portable/LEGO1/omni/include/mxsemaphore.h

27 lines
458 B
C
Raw Normal View History

#ifndef MX_SEMAPHORE_H
#define MX_SEMAPHORE_H
#include "mxtypes.h"
2023-10-24 19:38:27 -04:00
#include <windows.h>
// VTABLE: LEGO1 0x100dccf0
// SIZE 0x08
2023-10-24 19:38:27 -04:00
class MxSemaphore {
public:
2023-10-24 19:38:27 -04:00
MxSemaphore();
// FUNCTION: LEGO1 0x100c87e0
2023-10-24 19:38:27 -04:00
~MxSemaphore() { CloseHandle(m_hSemaphore); }
2023-10-24 19:38:27 -04:00
virtual MxResult Init(MxU32 p_initialCount, MxU32 p_maxCount);
2023-10-24 19:38:27 -04:00
void Wait(MxU32 p_timeoutMS);
void Release(MxU32 p_releaseCount);
private:
HANDLE m_hSemaphore; // 0x04
};
#endif // MX_SEMAPHORE_H