summaryrefslogtreecommitdiff
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-05 22:48:58 -0500
committerGravatar bunnei2015-01-05 22:48:58 -0500
commit9eaef4e04ac23640867448eb2ad416c23cda93e3 (patch)
tree65877eaf75b7d6f8c1fd06c6ad7c40cabe40a352 /src/core/hle/service/srv.cpp
parentMerge pull request #272 from rohit-n/sign-compare (diff)
parentServices: Clean up a few things and add a few function names (diff)
downloadyuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar.gz
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.tar.xz
yuzu-9eaef4e04ac23640867448eb2ad416c23cda93e3.zip
Merge pull request #413 from purpasmart96/serv_clean
Services: Clean up a few things and add a few function names
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 25fab1a4f..912b52adf 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -52,13 +52,15 @@ static void GetServiceHandle(Service::Interface* self) {
52} 52}
53 53
54const Interface::FunctionInfo FunctionTable[] = { 54const Interface::FunctionInfo FunctionTable[] = {
55 {0x00010002, Initialize, "Initialize"}, 55 {0x00010002, Initialize, "Initialize"},
56 {0x00020000, GetProcSemaphore, "GetProcSemaphore"}, 56 {0x00020000, GetProcSemaphore, "GetProcSemaphore"},
57 {0x00030100, nullptr, "RegisterService"}, 57 {0x00030100, nullptr, "RegisterService"},
58 {0x000400C0, nullptr, "UnregisterService"}, 58 {0x000400C0, nullptr, "UnregisterService"},
59 {0x00050100, GetServiceHandle, "GetServiceHandle"}, 59 {0x00050100, GetServiceHandle, "GetServiceHandle"},
60 {0x000B0000, nullptr, "ReceiveNotification"}, 60 {0x000600C2, nullptr, "RegisterHandle"},
61 {0x000C0080, nullptr, "PublishToSubscriber"} 61 {0x00090040, nullptr, "Subscribe"},
62 {0x000B0000, nullptr, "ReceiveNotification"},
63 {0x000C0080, nullptr, "PublishToSubscriber"},
62}; 64};
63 65
64//////////////////////////////////////////////////////////////////////////////////////////////////// 66////////////////////////////////////////////////////////////////////////////////////////////////////