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