early-access version 4128
This commit is contained in:
parent
1fa400cd38
commit
93218fea58
7 changed files with 21 additions and 21 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 4127.
|
This is the source code for early-access 4128.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -29,8 +29,8 @@ IBcatService::IBcatService(Core::System& system_, BcatBackend& backend_)
|
||||||
}} {
|
}} {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{10100, C<&IBcatService::RequestSyncDeliveryCache>, "RequestSyncDeliveryCache"},
|
{10100, D<&IBcatService::RequestSyncDeliveryCache>, "RequestSyncDeliveryCache"},
|
||||||
{10101, C<&IBcatService::RequestSyncDeliveryCacheWithDirectoryName>, "RequestSyncDeliveryCacheWithDirectoryName"},
|
{10101, D<&IBcatService::RequestSyncDeliveryCacheWithDirectoryName>, "RequestSyncDeliveryCacheWithDirectoryName"},
|
||||||
{10200, nullptr, "CancelSyncDeliveryCacheRequest"},
|
{10200, nullptr, "CancelSyncDeliveryCacheRequest"},
|
||||||
{20100, nullptr, "RequestSyncDeliveryCacheWithApplicationId"},
|
{20100, nullptr, "RequestSyncDeliveryCacheWithApplicationId"},
|
||||||
{20101, nullptr, "RequestSyncDeliveryCacheWithApplicationIdAndDirectoryName"},
|
{20101, nullptr, "RequestSyncDeliveryCacheWithApplicationIdAndDirectoryName"},
|
||||||
|
@ -39,7 +39,7 @@ IBcatService::IBcatService(Core::System& system_, BcatBackend& backend_)
|
||||||
{20400, nullptr, "RegisterSystemApplicationDeliveryTask"},
|
{20400, nullptr, "RegisterSystemApplicationDeliveryTask"},
|
||||||
{20401, nullptr, "UnregisterSystemApplicationDeliveryTask"},
|
{20401, nullptr, "UnregisterSystemApplicationDeliveryTask"},
|
||||||
{20410, nullptr, "SetSystemApplicationDeliveryTaskTimer"},
|
{20410, nullptr, "SetSystemApplicationDeliveryTaskTimer"},
|
||||||
{30100, C<&IBcatService::SetPassphrase>, "SetPassphrase"},
|
{30100, D<&IBcatService::SetPassphrase>, "SetPassphrase"},
|
||||||
{30101, nullptr, "Unknown30101"},
|
{30101, nullptr, "Unknown30101"},
|
||||||
{30102, nullptr, "Unknown30102"},
|
{30102, nullptr, "Unknown30102"},
|
||||||
{30200, nullptr, "RegisterBackgroundDeliveryTask"},
|
{30200, nullptr, "RegisterBackgroundDeliveryTask"},
|
||||||
|
@ -47,11 +47,11 @@ IBcatService::IBcatService(Core::System& system_, BcatBackend& backend_)
|
||||||
{30202, nullptr, "BlockDeliveryTask"},
|
{30202, nullptr, "BlockDeliveryTask"},
|
||||||
{30203, nullptr, "UnblockDeliveryTask"},
|
{30203, nullptr, "UnblockDeliveryTask"},
|
||||||
{30210, nullptr, "SetDeliveryTaskTimer"},
|
{30210, nullptr, "SetDeliveryTaskTimer"},
|
||||||
{30300, C<&IBcatService::RegisterSystemApplicationDeliveryTasks>, "RegisterSystemApplicationDeliveryTasks"},
|
{30300, D<&IBcatService::RegisterSystemApplicationDeliveryTasks>, "RegisterSystemApplicationDeliveryTasks"},
|
||||||
{90100, nullptr, "EnumerateBackgroundDeliveryTask"},
|
{90100, nullptr, "EnumerateBackgroundDeliveryTask"},
|
||||||
{90101, nullptr, "Unknown90101"},
|
{90101, nullptr, "Unknown90101"},
|
||||||
{90200, nullptr, "GetDeliveryList"},
|
{90200, nullptr, "GetDeliveryList"},
|
||||||
{90201, C<&IBcatService::ClearDeliveryCacheStorage>, "ClearDeliveryCacheStorage"},
|
{90201, D<&IBcatService::ClearDeliveryCacheStorage>, "ClearDeliveryCacheStorage"},
|
||||||
{90202, nullptr, "ClearDeliveryTaskSubscriptionStatus"},
|
{90202, nullptr, "ClearDeliveryTaskSubscriptionStatus"},
|
||||||
{90300, nullptr, "GetPushNotificationLog"},
|
{90300, nullptr, "GetPushNotificationLog"},
|
||||||
{90301, nullptr, "Unknown90301"},
|
{90301, nullptr, "Unknown90301"},
|
||||||
|
|
|
@ -24,9 +24,9 @@ IDeliveryCacheDirectoryService::IDeliveryCacheDirectoryService(Core::System& sys
|
||||||
: ServiceFramework{system_, "IDeliveryCacheDirectoryService"}, root(std::move(root_)) {
|
: ServiceFramework{system_, "IDeliveryCacheDirectoryService"}, root(std::move(root_)) {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, C<&IDeliveryCacheDirectoryService::Open>, "Open"},
|
{0, D<&IDeliveryCacheDirectoryService::Open>, "Open"},
|
||||||
{1, C<&IDeliveryCacheDirectoryService::Read>, "Read"},
|
{1, D<&IDeliveryCacheDirectoryService::Read>, "Read"},
|
||||||
{2, C<&IDeliveryCacheDirectoryService::GetCount>, "GetCount"},
|
{2, D<&IDeliveryCacheDirectoryService::GetCount>, "GetCount"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
|
@ -14,10 +14,10 @@ IDeliveryCacheFileService::IDeliveryCacheFileService(Core::System& system_,
|
||||||
: ServiceFramework{system_, "IDeliveryCacheFileService"}, root(std::move(root_)) {
|
: ServiceFramework{system_, "IDeliveryCacheFileService"}, root(std::move(root_)) {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, C<&IDeliveryCacheFileService::Open>, "Open"},
|
{0, D<&IDeliveryCacheFileService::Open>, "Open"},
|
||||||
{1, C<&IDeliveryCacheFileService::Read>, "Read"},
|
{1, D<&IDeliveryCacheFileService::Read>, "Read"},
|
||||||
{2, C<&IDeliveryCacheFileService::GetSize>, "GetSize"},
|
{2, D<&IDeliveryCacheFileService::GetSize>, "GetSize"},
|
||||||
{3, C<&IDeliveryCacheFileService::GetDigest>, "GetDigest"},
|
{3, D<&IDeliveryCacheFileService::GetDigest>, "GetDigest"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,8 @@ IDeliveryCacheProgressService::IDeliveryCacheProgressService(Core::System& syste
|
||||||
: ServiceFramework{system_, "IDeliveryCacheProgressService"}, event{event_}, impl{impl_} {
|
: ServiceFramework{system_, "IDeliveryCacheProgressService"}, event{event_}, impl{impl_} {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, C<&IDeliveryCacheProgressService::GetEvent>, "Get"},
|
{0, D<&IDeliveryCacheProgressService::GetEvent>, "Get"},
|
||||||
{0, C<&IDeliveryCacheProgressService::GetImpl>, "Get"},
|
{1, D<&IDeliveryCacheProgressService::GetImpl>, "Get"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
|
@ -14,9 +14,9 @@ IDeliveryCacheStorageService::IDeliveryCacheStorageService(Core::System& system_
|
||||||
: ServiceFramework{system_, "IDeliveryCacheStorageService"}, root(std::move(root_)) {
|
: ServiceFramework{system_, "IDeliveryCacheStorageService"}, root(std::move(root_)) {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, C<&IDeliveryCacheStorageService::CreateFileService>, "CreateFileService"},
|
{0, D<&IDeliveryCacheStorageService::CreateFileService>, "CreateFileService"},
|
||||||
{1, C<&IDeliveryCacheStorageService::CreateDirectoryService>, "CreateDirectoryService"},
|
{1, D<&IDeliveryCacheStorageService::CreateDirectoryService>, "CreateDirectoryService"},
|
||||||
{2, C<&IDeliveryCacheStorageService::EnumerateDeliveryCacheDirectory>, "EnumerateDeliveryCacheDirectory"},
|
{10, D<&IDeliveryCacheStorageService::EnumerateDeliveryCacheDirectory>, "EnumerateDeliveryCacheDirectory"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,9 @@ IServiceCreator::IServiceCreator(Core::System& system_, const char* name_)
|
||||||
: ServiceFramework{system_, name_}, fsc{system.GetFileSystemController()} {
|
: ServiceFramework{system_, name_}, fsc{system.GetFileSystemController()} {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, C<&IServiceCreator::CreateBcatService>, "CreateBcatService"},
|
{0, D<&IServiceCreator::CreateBcatService>, "CreateBcatService"},
|
||||||
{1, C<&IServiceCreator::CreateDeliveryCacheStorageService>, "CreateDeliveryCacheStorageService"},
|
{1, D<&IServiceCreator::CreateDeliveryCacheStorageService>, "CreateDeliveryCacheStorageService"},
|
||||||
{2, C<&IServiceCreator::CreateDeliveryCacheStorageServiceWithApplicationId>, "CreateDeliveryCacheStorageServiceWithApplicationId"},
|
{2, D<&IServiceCreator::CreateDeliveryCacheStorageServiceWithApplicationId>, "CreateDeliveryCacheStorageServiceWithApplicationId"},
|
||||||
{3, nullptr, "CreateDeliveryCacheProgressService"},
|
{3, nullptr, "CreateDeliveryCacheProgressService"},
|
||||||
{4, nullptr, "CreateDeliveryCacheProgressServiceWithApplicationId"},
|
{4, nullptr, "CreateDeliveryCacheProgressServiceWithApplicationId"},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue