summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/es/es.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-19 10:12:26 +0200
committerLioncash <mathew1800@gmail.com>2018-10-19 10:12:28 +0200
commit18334986177153e792ad3901a672f1cf56bf02bf (patch)
tree223dc62db3930ab893dabe06ee291904406a02bb /src/core/hle/service/es/es.cpp
parentaudio: Update service function tables (diff)
downloadyuzu-18334986177153e792ad3901a672f1cf56bf02bf.tar
yuzu-18334986177153e792ad3901a672f1cf56bf02bf.tar.gz
yuzu-18334986177153e792ad3901a672f1cf56bf02bf.tar.bz2
yuzu-18334986177153e792ad3901a672f1cf56bf02bf.tar.lz
yuzu-18334986177153e792ad3901a672f1cf56bf02bf.tar.xz
yuzu-18334986177153e792ad3901a672f1cf56bf02bf.tar.zst
yuzu-18334986177153e792ad3901a672f1cf56bf02bf.zip
Diffstat (limited to 'src/core/hle/service/es/es.cpp')
-rw-r--r--src/core/hle/service/es/es.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/core/hle/service/es/es.cpp b/src/core/hle/service/es/es.cpp
index d40f18565..6701cb913 100644
--- a/src/core/hle/service/es/es.cpp
+++ b/src/core/hle/service/es/es.cpp
@@ -9,6 +9,7 @@ namespace Service::ES {
class ETicket final : public ServiceFramework<ETicket> {
public:
explicit ETicket() : ServiceFramework{"es"} {
+ // clang-format off
static const FunctionInfo functions[] = {
{1, nullptr, "ImportTicket"},
{2, nullptr, "ImportTicketCertificateSet"},
@@ -37,15 +38,18 @@ public:
{25, nullptr, "DeletePrepurchaseRecord"},
{26, nullptr, "DeleteAllPrepurchaseRecord"},
{27, nullptr, "CountPrepurchaseRecord"},
- {28, nullptr, "ListPrepurchaseRecord"},
+ {28, nullptr, "ListPrepurchaseRecordRightsIds"},
{29, nullptr, "ListPrepurchaseRecordInfo"},
- {30, nullptr, "Unknown1"},
- {31, nullptr, "Unknown2"},
- {32, nullptr, "Unknown3"},
- {33, nullptr, "Unknown4"},
- {34, nullptr, "Unknown5"},
- {35, nullptr, "Unknown6"},
+ {30, nullptr, "CountTicket"},
+ {31, nullptr, "ListTicketRightsIds"},
+ {32, nullptr, "CountPrepurchaseRecordEx"},
+ {33, nullptr, "ListPrepurchaseRecordRightsIdsEx"},
+ {34, nullptr, "GetEncryptedTicketSize"},
+ {35, nullptr, "GetEncryptedTicketData"},
+ {36, nullptr, "DeleteAllInactiveELicenseRequiredPersonalizedTicket"},
+ {503, nullptr, "GetTitleKey"},
};
+ // clang-format on
RegisterHandlers(functions);
}
};