mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +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 DSPContext : SessionContext {
|
|
};
|
|
|
|
HPV::RefCounted<Object> CreateDspService(RefCounted<Port> port, DSPContext&);
|
|
|
|
} // namespace HPV
|
|
|
|
} // namespace HOS
|
|
|
|
} // namespace HLE
|