fsp_pr.cpp 656 B

1234567891011121314151617181920212223
  1. // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "core/hle/service/filesystem/fsp_pr.h"
  4. namespace Service::FileSystem {
  5. FSP_PR::FSP_PR(Core::System& system_) : ServiceFramework{system_, "fsp:pr"} {
  6. // clang-format off
  7. static const FunctionInfo functions[] = {
  8. {0, nullptr, "RegisterProgram"},
  9. {1, nullptr, "UnregisterProgram"},
  10. {2, nullptr, "SetCurrentProcess"},
  11. {256, nullptr, "SetEnabledProgramVerification"},
  12. };
  13. // clang-format on
  14. RegisterHandlers(functions);
  15. }
  16. FSP_PR::~FSP_PR() = default;
  17. } // namespace Service::FileSystem