diff options
author | archshift <admin@archshift.com> | 2015-01-19 00:14:27 +0100 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-01-19 00:15:14 +0100 |
commit | 4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5 (patch) | |
tree | 48e983ddf61d75ef55a37c23e1d315874f55f67c /src/core/hle/service | |
parent | Merge pull request #489 from lioncash/strt (diff) | |
download | yuzu-4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5.tar yuzu-4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5.tar.gz yuzu-4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5.tar.bz2 yuzu-4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5.tar.lz yuzu-4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5.tar.xz yuzu-4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5.tar.zst yuzu-4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/apt_a.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/apt_s.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/apt_a.cpp b/src/core/hle/service/apt_a.cpp index 37be4b027..42f2879c1 100644 --- a/src/core/hle/service/apt_a.cpp +++ b/src/core/hle/service/apt_a.cpp @@ -11,6 +11,7 @@ namespace APT_U { extern void GetLockHandle(Service::Interface* self); extern void ReceiveParameter(Service::Interface* self); extern void GlanceParameter(Service::Interface* self); + extern void GetSharedFont(Service::Interface* self); } //////////////////////////////////////////////////////////////////////////////////////////////////// @@ -29,6 +30,7 @@ const Interface::FunctionInfo FunctionTable[] = { {0x000E0080, APT_U::GlanceParameter, "GlanceParameter?"}, {0x003B0040, nullptr, "CancelLibraryApplet?"}, {0x00430040, nullptr, "NotifyToWait?"}, + {0x00440000, APT_U::GetSharedFont, "GetSharedFont?"}, {0x004B00C2, nullptr, "AppletUtility?"}, {0x00550040, nullptr, "WriteInputToNsState?"}, }; diff --git a/src/core/hle/service/apt_s.cpp b/src/core/hle/service/apt_s.cpp index f4599e19d..31e6653ef 100644 --- a/src/core/hle/service/apt_s.cpp +++ b/src/core/hle/service/apt_s.cpp @@ -20,6 +20,7 @@ namespace APT_U { extern void Initialize(Service::Interface* self); extern void Enable(Service::Interface* self); extern void InquireNotification(Service::Interface* self); + extern void NotifyToWait(Service::Interface* self); extern void GetSharedFont(Service::Interface* self); extern void AppletUtility(Service::Interface* self); extern void GlanceParameter(Service::Interface* self); @@ -95,7 +96,7 @@ const Interface::FunctionInfo FunctionTable[] = { {0x00400042, nullptr, "SendCaptureBufferInfo"}, {0x00410040, nullptr, "ReceiveCaptureBufferInfo"}, {0x00420080, nullptr, "SleepSystem"}, - {0x00430040, nullptr, "NotifyToWait"}, + {0x00430040, APT_U::NotifyToWait, "NotifyToWait"}, {0x00440000, APT_U::GetSharedFont, "GetSharedFont"}, {0x00450040, nullptr, "GetWirelessRebootInfo"}, {0x00460104, nullptr, "Wrap"}, |