mirror of https://github.com/yuzu-mirror/yuzu
commit
ac8b38e54d
@ -0,0 +1,35 @@
|
|||||||
|
// Copyright 2014 Citra Emulator Project
|
||||||
|
// Licensed under GPLv2
|
||||||
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
|
#include "common/log.h"
|
||||||
|
#include "core/hle/hle.h"
|
||||||
|
#include "core/hle/service/frd_u.h"
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Namespace FRD_U
|
||||||
|
|
||||||
|
namespace FRD_U {
|
||||||
|
|
||||||
|
const Interface::FunctionInfo FunctionTable[] = {
|
||||||
|
{0x00050000, nullptr, "GetFriendKey"},
|
||||||
|
{0x00080000, nullptr, "GetMyPresence"},
|
||||||
|
{0x00100040, nullptr, "GetPassword"},
|
||||||
|
{0x00190042, nullptr, "GetFriendFavoriteGame"},
|
||||||
|
{0x001A00C4, nullptr, "GetFriendInfo"},
|
||||||
|
{0x001B0080, nullptr, "IsOnFriendList"},
|
||||||
|
{0x001C0042, nullptr, "DecodeLocalFriendCode"},
|
||||||
|
{0x001D0002, nullptr, "SetCurrentlyPlayingText"},
|
||||||
|
{0x00320042, nullptr, "SetClientSdkVersion"}
|
||||||
|
};
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Interface class
|
||||||
|
|
||||||
|
Interface::Interface() {
|
||||||
|
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
||||||
|
}
|
||||||
|
|
||||||
|
Interface::~Interface() {
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace
|
@ -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
|
Loading…
Reference in New Issue