diff options
| author | bunnei <bunneidev@gmail.com> | 2015-01-20 12:55:53 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-01-20 12:55:53 -0500 |
| commit | cbbe9e1500dacd3faaa9a93ecc4b10e5d96ee959 (patch) | |
| tree | 129d5377fb7190121e2ba1c26a3b771ea76daf8a /src/core/hle/service/apt_s.cpp | |
| parent | 205170fa623efdd5eafb0c957d728babe4836f45 (diff) | |
| parent | 4d316cbd8e48d02f7baa617d5b5c78c6f74f01b5 (diff) | |
Merge pull request #492 from archshift/apt
Expose GetSharedFont and NotifyToWait to APT:A and APT:S respectively
Diffstat (limited to 'src/core/hle/service/apt_s.cpp')
| -rw-r--r-- | src/core/hle/service/apt_s.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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"}, |
