a0720b5681
* Refactoring HOS folder structure Refactoring HOS folder structure: - Added some subfolders when needed (Following structure decided in private). - Added some `Types` folders when needed. - Little cleanup here and there. - Add services placeholders for every HOS services (close #766 and #753). * Remove Types namespaces
66 lines
No EOL
1.9 KiB
C#
66 lines
No EOL
1.9 KiB
C#
using Ryujinx.Common.Logging;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
|
{
|
|
class IAudioController : IpcService
|
|
{
|
|
public IAudioController() { }
|
|
|
|
[Command(0)]
|
|
// SetExpectedMasterVolume(f32, f32)
|
|
public ResultCode SetExpectedMasterVolume(ServiceCtx context)
|
|
{
|
|
float appletVolume = context.RequestData.ReadSingle();
|
|
float libraryAppletVolume = context.RequestData.ReadSingle();
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(1)]
|
|
// GetMainAppletExpectedMasterVolume() -> f32
|
|
public ResultCode GetMainAppletExpectedMasterVolume(ServiceCtx context)
|
|
{
|
|
context.ResponseData.Write(1f);
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(2)]
|
|
// GetLibraryAppletExpectedMasterVolume() -> f32
|
|
public ResultCode GetLibraryAppletExpectedMasterVolume(ServiceCtx context)
|
|
{
|
|
context.ResponseData.Write(1f);
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(3)]
|
|
// ChangeMainAppletMasterVolume(f32, u64)
|
|
public ResultCode ChangeMainAppletMasterVolume(ServiceCtx context)
|
|
{
|
|
float unknown0 = context.RequestData.ReadSingle();
|
|
long unknown1 = context.RequestData.ReadInt64();
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(4)]
|
|
// SetTransparentVolumeRate(f32)
|
|
public ResultCode SetTransparentVolumeRate(ServiceCtx context)
|
|
{
|
|
float unknown0 = context.RequestData.ReadSingle();
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |