ldr_ro.h 589 B

123456789101112131415161718192021222324252627
  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 LDR_RO
  8. namespace LDR_RO {
  9. class Interface : public Service::Interface {
  10. public:
  11. Interface();
  12. /**
  13. * Gets the string port name used by CTROS for the service
  14. * @return Port name of service
  15. */
  16. std::string GetPortName() const override {
  17. return "ldr:ro";
  18. }
  19. };
  20. } // namespace