mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 06:50:59 +01:00
28 lines
428 B
C++
28 lines
428 B
C++
#pragma once
|
|
|
|
#include "os_hypervisor_private.hpp"
|
|
|
|
struct AudioFrontend;
|
|
|
|
namespace Settings {
|
|
struct Settings;
|
|
}
|
|
|
|
namespace HLE {
|
|
|
|
namespace OS {
|
|
|
|
namespace HPV {
|
|
|
|
struct DSPContext : SessionContext {
|
|
Settings::Settings* settings = nullptr;
|
|
AudioFrontend* frontend = nullptr;
|
|
};
|
|
|
|
HPV::RefCounted<Object> CreateDspService(RefCounted<Port> port, DSPContext&);
|
|
|
|
} // namespace HPV
|
|
|
|
} // namespace HOS
|
|
|
|
} // namespace HLE
|