blob: 082f689c86655d5823f30422096da9de2dd61fbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <core/hle/lock.h>
namespace HLE {
std::mutex g_hle_lock;
}
|