Add FRD:U service and functions

This commit is contained in:
archshift
2014-11-10 22:41:17 -08:00
parent 1aa29b2b6c
commit 37e582c395
4 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,27 @@
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace FRD_U
namespace FRD_U {
class Interface : public Service::Interface {
public:
Interface();
~Interface();
/**
* Gets the string port name used by CTROS for the service
* @return Port name of service
*/
std::string GetPortName() const {
return "frd:u";
}
};
} // namespace