nifm_u.cpp 554 B

1234567891011121314151617
  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/nifm/nifm_u.h"
  5. namespace Service::NIFM {
  6. NIFM_U::NIFM_U(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "nifm:u") {
  7. static const FunctionInfo functions[] = {
  8. {4, &NIFM_U::CreateGeneralServiceOld, "CreateGeneralServiceOld"},
  9. {5, &NIFM_U::CreateGeneralService, "CreateGeneralService"},
  10. };
  11. RegisterHandlers(functions);
  12. }
  13. } // namespace Service::NIFM