am_u.cpp 564 B

12345678910111213141516171819202122
  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/am/am.h"
  6. #include "core/hle/service/am/am_u.h"
  7. namespace Service {
  8. namespace AM {
  9. const Interface::FunctionInfo FunctionTable[] = {
  10. {0x00010040, TitleIDListGetTotal, "TitleIDListGetTotal"},
  11. {0x00020082, GetTitleIDList, "GetTitleIDList"},
  12. };
  13. AM_U_Interface::AM_U_Interface() {
  14. Register(FunctionTable);
  15. }
  16. } // namespace AM
  17. } // namespace Service