mikage-dev/source/processes/dsp_hpv.hpp

29 lines
428 B
C++
Raw Normal View History

2024-03-07 22:05:16 +01:00
#pragma once
#include "os_hypervisor_private.hpp"
2024-09-29 19:29:28 +02:00
struct AudioFrontend;
namespace Settings {
struct Settings;
}
2024-03-07 22:05:16 +01:00
namespace HLE {
namespace OS {
namespace HPV {
struct DSPContext : SessionContext {
2024-09-29 19:29:28 +02:00
Settings::Settings* settings = nullptr;
AudioFrontend* frontend = nullptr;
2024-03-07 22:05:16 +01:00
};
HPV::RefCounted<Object> CreateDspService(RefCounted<Port> port, DSPContext&);
} // namespace HPV
} // namespace HOS
} // namespace HLE