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