ir_rst.cpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2
  3. // Refer to the license.txt file included.
  4. #include "common/log.h"
  5. #include "core/hle/hle.h"
  6. #include "core/hle/service/ir_rst.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace IR_RST
  9. namespace IR_RST {
  10. const Interface::FunctionInfo FunctionTable[] = {
  11. {0x00010000, nullptr, "GetHandles"},
  12. {0x00020080, nullptr, "Initialize"},
  13. {0x00030000, nullptr, "Shutdown"},
  14. {0x00040000, nullptr, "Unknown"},
  15. {0x00050000, nullptr, "Unknown"},
  16. {0x00060000, nullptr, "Unknown"},
  17. {0x00070080, nullptr, "Unknown"},
  18. {0x00080000, nullptr, "Unknown"},
  19. {0x00090000, nullptr, "Unknown"},
  20. };
  21. ////////////////////////////////////////////////////////////////////////////////////////////////////
  22. // Interface class
  23. Interface::Interface() {
  24. Register(FunctionTable, ARRAY_SIZE(FunctionTable));
  25. }
  26. Interface::~Interface() {
  27. }
  28. } // namespace