audout_a.cpp 744 B

123456789101112131415161718192021222324
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/audio/audout_a.h"
  5. namespace Service::Audio {
  6. AudOutA::AudOutA() : ServiceFramework{"audout:a"} {
  7. // clang-format off
  8. static const FunctionInfo functions[] = {
  9. {0, nullptr, "RequestSuspendAudioOuts"},
  10. {1, nullptr, "RequestResumeAudioOuts"},
  11. {2, nullptr, "GetAudioOutsProcessMasterVolume"},
  12. {3, nullptr, "SetAudioOutsProcessMasterVolume"},
  13. {4, nullptr, "GetAudioOutsProcessRecordVolume"},
  14. {5, nullptr, "SetAudioOutsProcessRecordVolume"},
  15. };
  16. // clang-format on
  17. RegisterHandlers(functions);
  18. }
  19. } // namespace Service::Audio