mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +01:00
15 lines
284 B
C++
15 lines
284 B
C++
#pragma once
|
|
|
|
#include "fake_process.hpp"
|
|
|
|
namespace HLE {
|
|
|
|
namespace OS {
|
|
|
|
class FakeThread;
|
|
|
|
template<> std::shared_ptr<WrappedFakeProcess> CreateFakeProcessViaContext<struct FakeCAM>(OS&, Interpreter::Setup&, uint32_t, const std::string&);
|
|
|
|
} // namespace OS
|
|
|
|
} // namespace HLE
|