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