Stub SetRecordVolumeMuted

This commit is contained in:
Dima 2022-11-21 21:17:10 +03:00 committed by Billy Laws
parent f6d95aae01
commit 4bdd033354
2 changed files with 11 additions and 1 deletions

View File

@ -100,4 +100,8 @@ namespace skyline::service::am {
Logger::Debug("Setting Album Image Taken Notification Enabled: {}", albumImageTakenNotificationEnabled);
return {};
}
Result ISelfController::SetRecordVolumeMuted(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
return {};
}
}

View File

@ -121,6 +121,11 @@ namespace skyline::service::am {
*/
Result SetAlbumImageTakenNotificationEnabled(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
/**
* @url https://switchbrew.org/wiki/Applet_Manager_services#SetRecordVolumeMuted
*/
Result SetRecordVolumeMuted(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
SERVICE_DECL(
SFUNC(0x0, ISelfController, Exit),
SFUNC(0x1, ISelfController, LockExit),
@ -138,7 +143,8 @@ namespace skyline::service::am {
SFUNC(0x3F, ISelfController, GetIdleTimeDetectionExtension),
SFUNC(0x5A, ISelfController, GetAccumulatedSuspendedTickValue),
SFUNC(0x5B, ISelfController, GetAccumulatedSuspendedTickChangedEvent),
SFUNC(0x64, ISelfController, SetAlbumImageTakenNotificationEnabled)
SFUNC(0x64, ISelfController, SetAlbumImageTakenNotificationEnabled),
SFUNC(0x82, ISelfController, SetRecordVolumeMuted)
)
};
}