diff options
| author | 2015-07-19 22:39:51 -0400 | |
|---|---|---|
| committer | 2015-07-19 22:39:51 -0400 | |
| commit | 21a696abde5ae2b7ef419c259f3d76a350bb4b63 (patch) | |
| tree | ce24b8600cc558276d1f514afc93088d87088ef3 | |
| parent | Merge pull request #950 from lioncash/bx (diff) | |
| parent | Add more frd:u unknown service commands from 3dbrew (diff) | |
| download | yuzu-21a696abde5ae2b7ef419c259f3d76a350bb4b63.tar.gz yuzu-21a696abde5ae2b7ef419c259f3d76a350bb4b63.tar.xz yuzu-21a696abde5ae2b7ef419c259f3d76a350bb4b63.zip | |
Merge pull request #946 from archshift/update-frdu
Add more frd:u unknown service commands from 3dbrew
| -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() { |