mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +01:00
21 lines
278 B
C++
21 lines
278 B
C++
|
#pragma once
|
||
|
|
||
|
#include "os_hypervisor_private.hpp"
|
||
|
|
||
|
namespace HLE {
|
||
|
|
||
|
namespace OS {
|
||
|
|
||
|
namespace HPV {
|
||
|
|
||
|
struct ROContext : SessionContext {
|
||
|
};
|
||
|
|
||
|
HPV::RefCounted<Object> CreateRoService(RefCounted<Port> port, ROContext&);
|
||
|
|
||
|
} // namespace HPV
|
||
|
|
||
|
} // namespace HOS
|
||
|
|
||
|
} // namespace HLE
|