mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +01:00
15 lines
329 B
C++
15 lines
329 B
C++
|
#pragma once
|
||
|
|
||
|
#include "fake_process.hpp"
|
||
|
|
||
|
namespace HLE {
|
||
|
|
||
|
namespace OS {
|
||
|
|
||
|
// Creates a dummy process that immediately exits
|
||
|
template<> std::shared_ptr<WrappedFakeProcess> CreateFakeProcessViaContext<struct DummyProcess>(OS&, Interpreter::Setup&, uint32_t pid, const std::string& name);
|
||
|
|
||
|
} // namespace OS
|
||
|
|
||
|
} // namespace HLE
|