mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
15 lines
167 B
C++
15 lines
167 B
C++
#pragma once
|
|
#include "pch.h"
|
|
#include "Utils.h"
|
|
|
|
|
|
class ExclModeHack {
|
|
public:
|
|
ExclModeHack();
|
|
|
|
~ExclModeHack();
|
|
|
|
private:
|
|
Utils::ScopedHandle _exclModeMutex;
|
|
};
|
|
|