boss_u.cpp 693 B

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