fsp_ldr.cpp 614 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. #pragma once
  5. #include "core/hle/service/filesystem/fsp_ldr.h"
  6. #include "core/hle/service/service.h"
  7. namespace Service::FileSystem {
  8. FSP_LDR::FSP_LDR() : ServiceFramework{"fsp:ldr"} {
  9. // clang-format off
  10. static const FunctionInfo functions[] = {
  11. {0, nullptr, "OpenCodeFileSystem"},
  12. {1, nullptr, "IsArchivedProgram"},
  13. {2, nullptr, "SetCurrentProcess"},
  14. };
  15. // clang-format on
  16. RegisterHandlers(functions);
  17. }
  18. } // namespace Service::FileSystem