am_sys.cpp 657 B

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