am_sys.cpp 681 B

123456789101112131415161718192021222324
  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/log.h"
  5. #include "core/hle/hle.h"
  6. #include "core/hle/service/am_sys.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace AM_SYS
  9. namespace AM_SYS {
  10. // Empty arrays are illegal -- commented out until an entry is added.
  11. //const Interface::FunctionInfo FunctionTable[] = { };
  12. ////////////////////////////////////////////////////////////////////////////////////////////////////
  13. // Interface class
  14. Interface::Interface() {
  15. //Register(FunctionTable);
  16. }
  17. } // namespace