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