Magpie/Runtime/ExclModeHack.h
2021-12-27 18:51:48 +08:00

15 lines
167 B
C++

#pragma once
#include "pch.h"
#include "Utils.h"
class ExclModeHack {
public:
ExclModeHack();
~ExclModeHack();
private:
Utils::ScopedHandle _exclModeMutex;
};