ns_s.cpp 696 B

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