frd_a.cpp 679 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/frd_a.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace FRD_A
  9. namespace FRD_A {
  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