Stub the y2r:u service

This commit is contained in:
archshift
2015-01-02 15:03:40 -03:00
parent 092a67cefb
commit 48130b1eaa
4 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace Y2R_U
namespace Y2R_U {
class Interface : public Service::Interface {
public:
Interface();
std::string GetPortName() const override {
return "y2r:u";
}
};
} // namespace