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