diff options
| author | bunnei <bunneidev@gmail.com> | 2015-01-05 22:48:58 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-01-05 22:48:58 -0500 |
| commit | 9eaef4e04ac23640867448eb2ad416c23cda93e3 (patch) | |
| tree | 65877eaf75b7d6f8c1fd06c6ad7c40cabe40a352 /src/core/hle/service/srv.cpp | |
| parent | 9b83f0e15859ed56a8e25f204484d2cd34b74f16 (diff) | |
| parent | 379b39e58395187fb0806e05bfaa29a9879428c4 (diff) | |
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.cpp | 16 |
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) { } const Interface::FunctionInfo FunctionTable[] = { - {0x00010002, Initialize, "Initialize"}, - {0x00020000, GetProcSemaphore, "GetProcSemaphore"}, - {0x00030100, nullptr, "RegisterService"}, - {0x000400C0, nullptr, "UnregisterService"}, - {0x00050100, GetServiceHandle, "GetServiceHandle"}, - {0x000B0000, nullptr, "ReceiveNotification"}, - {0x000C0080, nullptr, "PublishToSubscriber"} + {0x00010002, Initialize, "Initialize"}, + {0x00020000, GetProcSemaphore, "GetProcSemaphore"}, + {0x00030100, nullptr, "RegisterService"}, + {0x000400C0, nullptr, "UnregisterService"}, + {0x00050100, GetServiceHandle, "GetServiceHandle"}, + {0x000600C2, nullptr, "RegisterHandle"}, + {0x00090040, nullptr, "Subscribe"}, + {0x000B0000, nullptr, "ReceiveNotification"}, + {0x000C0080, nullptr, "PublishToSubscriber"}, }; //////////////////////////////////////////////////////////////////////////////////////////////////// |
