diff options
| author | 2015-07-19 13:28:58 -0700 | |
|---|---|---|
| committer | 2015-07-19 13:30:20 -0700 | |
| commit | d1e6afaba181c4395475cd526f4363963639c869 (patch) | |
| tree | bbcb9b422543d2fccbfe2336c97a6cde859c2858 /src/core | |
| parent | Merge pull request #943 from Subv/ia4 (diff) | |
| download | yuzu-d1e6afaba181c4395475cd526f4363963639c869.tar.gz yuzu-d1e6afaba181c4395475cd526f4363963639c869.tar.xz yuzu-d1e6afaba181c4395475cd526f4363963639c869.zip | |
Add more frd:u unknown service commands from 3dbrew
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/frd/frd_u.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/core/hle/service/frd/frd_u.cpp b/src/core/hle/service/frd/frd_u.cpp index 439c7282e..3a5897d06 100644 --- a/src/core/hle/service/frd/frd_u.cpp +++ b/src/core/hle/service/frd/frd_u.cpp | |||
| @@ -10,15 +10,26 @@ namespace Service { | |||
| 10 | namespace FRD { | 10 | namespace FRD { |
| 11 | 11 | ||
| 12 | const Interface::FunctionInfo FunctionTable[] = { | 12 | const Interface::FunctionInfo FunctionTable[] = { |
| 13 | {0x00010000, nullptr, "HasLoggedIn"}, | ||
| 14 | {0x00030000, nullptr, "Login"}, | ||
| 15 | {0x00040000, nullptr, "Logout"}, | ||
| 13 | {0x00050000, nullptr, "GetFriendKey"}, | 16 | {0x00050000, nullptr, "GetFriendKey"}, |
| 14 | {0x00080000, nullptr, "GetMyPresence"}, | 17 | {0x00080000, nullptr, "GetMyPresence"}, |
| 18 | {0x00090000, nullptr, "GetMyScreenName"}, | ||
| 15 | {0x00100040, nullptr, "GetPassword"}, | 19 | {0x00100040, nullptr, "GetPassword"}, |
| 20 | {0x00110080, nullptr, "GetFriendKeyList"}, | ||
| 16 | {0x00190042, nullptr, "GetFriendFavoriteGame"}, | 21 | {0x00190042, nullptr, "GetFriendFavoriteGame"}, |
| 17 | {0x001A00C4, nullptr, "GetFriendInfo"}, | 22 | {0x001A00C4, nullptr, "GetFriendInfo"}, |
| 18 | {0x001B0080, nullptr, "IsOnFriendList"}, | 23 | {0x001B0080, nullptr, "IsOnFriendList"}, |
| 19 | {0x001C0042, nullptr, "DecodeLocalFriendCode"}, | 24 | {0x001C0042, nullptr, "DecodeLocalFriendCode"}, |
| 20 | {0x001D0002, nullptr, "SetCurrentlyPlayingText"}, | 25 | {0x001D0002, nullptr, "SetCurrentlyPlayingText"}, |
| 21 | {0x00320042, nullptr, "SetClientSdkVersion"} | 26 | {0x00230000, nullptr, "GetLastResponseResult"}, |
| 27 | {0x00270040, nullptr, "ResultToErrorCode"}, | ||
| 28 | {0x00280244, nullptr, "RequestGameAuthentication"}, | ||
| 29 | {0x00290000, nullptr, "GetGameAuthenticationData"}, | ||
| 30 | {0x002A0204, nullptr, "RequestServiceLocator"}, | ||
| 31 | {0x002B0000, nullptr, "GetServiceLocatorData"}, | ||
| 32 | {0x00320042, nullptr, "SetClientSdkVersion"}, | ||
| 22 | }; | 33 | }; |
| 23 | 34 | ||
| 24 | FRD_U_Interface::FRD_U_Interface() { | 35 | FRD_U_Interface::FRD_U_Interface() { |