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