yuzu-mainline/src/core/hle/service/ldr_ro.h

24 lines
494 B
C
Raw Normal View History

2014-12-14 22:49:33 -08:00
// Copyright 2014 Citra Emulator Project
2014-12-16 21:38:14 -08:00
// Licensed under GPLv2 or any later version
2014-12-14 22:49:33 -08:00
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace LDR_RO
namespace LDR_RO {
class Interface : public Service::Interface {
public:
Interface();
std::string GetPortName() const override {
return "ldr:ro";
}
};
} // namespace