From 7933dbe6a0eee766a64b26f7d4461a40e473fcdc Mon Sep 17 00:00:00 2001 From: purpasmart96 Date: Thu, 11 Jun 2015 15:12:16 -0700 Subject: Services: Continue separation of services into their own folders --- src/core/hle/service/frd/frd_u.cpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/core/hle/service/frd/frd_u.cpp (limited to 'src/core/hle/service/frd/frd_u.cpp') diff --git a/src/core/hle/service/frd/frd_u.cpp b/src/core/hle/service/frd/frd_u.cpp new file mode 100644 index 00000000..439c7282 --- /dev/null +++ b/src/core/hle/service/frd/frd_u.cpp @@ -0,0 +1,29 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include "core/hle/hle.h" +#include "core/hle/service/frd/frd.h" +#include "core/hle/service/frd/frd_u.h" + +namespace Service { +namespace FRD { + +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"} +}; + +FRD_U_Interface::FRD_U_Interface() { + Register(FunctionTable); +} + +} // namespace FRD +} // namespace Service -- cgit v1.2.3