diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/act_a.cpp | 7 | ||||
| -rw-r--r-- | src/core/hle/service/act_u.cpp | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/core/hle/service/act_a.cpp b/src/core/hle/service/act_a.cpp index 3a775fa90..35ba71f79 100644 --- a/src/core/hle/service/act_a.cpp +++ b/src/core/hle/service/act_a.cpp | |||
| @@ -10,6 +10,13 @@ | |||
| 10 | namespace ACT_A { | 10 | namespace ACT_A { |
| 11 | 11 | ||
| 12 | const Interface::FunctionInfo FunctionTable[] = { | 12 | const Interface::FunctionInfo FunctionTable[] = { |
| 13 | // act:u shared commands | ||
| 14 | {0x00010084, nullptr, "Initialize"}, | ||
| 15 | {0x00020040, nullptr, "GetErrorCode"}, | ||
| 16 | {0x000600C2, nullptr, "GetAccountDataBlock"}, | ||
| 17 | {0x000B0042, nullptr, "AcquireEulaList"}, | ||
| 18 | {0x000D0040, nullptr, "GenerateUuid"}, | ||
| 19 | // act:a | ||
| 13 | {0x041300C2, nullptr, "UpdateMiiImage"}, | 20 | {0x041300C2, nullptr, "UpdateMiiImage"}, |
| 14 | {0x041B0142, nullptr, "AgreeEula"}, | 21 | {0x041B0142, nullptr, "AgreeEula"}, |
| 15 | {0x04210042, nullptr, "UploadMii"}, | 22 | {0x04210042, nullptr, "UploadMii"}, |
diff --git a/src/core/hle/service/act_u.cpp b/src/core/hle/service/act_u.cpp index 05de4d002..1b871d441 100644 --- a/src/core/hle/service/act_u.cpp +++ b/src/core/hle/service/act_u.cpp | |||
| @@ -10,10 +10,13 @@ | |||
| 10 | namespace ACT_U { | 10 | namespace ACT_U { |
| 11 | 11 | ||
| 12 | const Interface::FunctionInfo FunctionTable[] = { | 12 | const Interface::FunctionInfo FunctionTable[] = { |
| 13 | // clang-format off | ||
| 13 | {0x00010084, nullptr, "Initialize"}, | 14 | {0x00010084, nullptr, "Initialize"}, |
| 14 | {0x00020040, nullptr, "GetErrorCode"}, | 15 | {0x00020040, nullptr, "GetErrorCode"}, |
| 15 | {0x000600C2, nullptr, "GetAccountDataBlock"}, | 16 | {0x000600C2, nullptr, "GetAccountDataBlock"}, |
| 17 | {0x000B0042, nullptr, "AcquireEulaList"}, | ||
| 16 | {0x000D0040, nullptr, "GenerateUuid"}, | 18 | {0x000D0040, nullptr, "GenerateUuid"}, |
| 19 | // clang-format on | ||
| 17 | }; | 20 | }; |
| 18 | 21 | ||
| 19 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 22 | //////////////////////////////////////////////////////////////////////////////////////////////////// |