ndm_u.h 629 B

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/service/service.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace NDM
  8. // No idea what this is
  9. namespace NDM_U {
  10. class Interface : public Service::Interface {
  11. public:
  12. Interface();
  13. ~Interface();
  14. /**
  15. * Gets the string port name used by CTROS for the service
  16. * @return Port name of service
  17. */
  18. std::string GetPortName() const override {
  19. return "ndm:u";
  20. }
  21. };
  22. } // namespace