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