set_fd.cpp 881 B

1234567891011121314151617181920212223242526272829
  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/set/set_fd.h"
  5. namespace Service::Set {
  6. SET_FD::SET_FD(Core::System& system_) : ServiceFramework{system_, "set:fd"} {
  7. // clang-format off
  8. static const FunctionInfo functions[] = {
  9. {2, nullptr, "SetSettingsItemValue"},
  10. {3, nullptr, "ResetSettingsItemValue"},
  11. {4, nullptr, "CreateSettingsItemKeyIterator"},
  12. {10, nullptr, "ReadSettings"},
  13. {11, nullptr, "ResetSettings"},
  14. {20, nullptr, "SetWebInspectorFlag"},
  15. {21, nullptr, "SetAllowedSslHosts"},
  16. {22, nullptr, "SetHostFsMountPoint"},
  17. {23, nullptr, "SetMemoryUsageRateFlag"},
  18. };
  19. // clang-format on
  20. RegisterHandlers(functions);
  21. }
  22. SET_FD::~SET_FD() = default;
  23. } // namespace Service::Set