ns_s.cpp 641 B

12345678910111213141516171819202122232425
  1. // Copyright 2015 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/hle.h"
  5. #include "core/hle/service/ns_s.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace NS_S
  8. namespace NS_S {
  9. const Interface::FunctionInfo FunctionTable[] = {
  10. {0x000200C0, nullptr, "LaunchTitle"},
  11. };
  12. ////////////////////////////////////////////////////////////////////////////////////////////////////
  13. // Interface class
  14. Interface::Interface() {
  15. Register(FunctionTable);
  16. }
  17. } // namespace