summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2016-12-07 23:13:53 -0500
committerGravatar Lioncash2016-12-08 00:56:46 -0500
commit093aa35c87ca1014a6fe1906b0bb72896ddf647f (patch)
tree49f1fe28beae7d89f61567d16c18953c872103eb /src
parentcfg: Update function tables (diff)
downloadyuzu-093aa35c87ca1014a6fe1906b0bb72896ddf647f.tar.gz
yuzu-093aa35c87ca1014a6fe1906b0bb72896ddf647f.tar.xz
yuzu-093aa35c87ca1014a6fe1906b0bb72896ddf647f.zip
dlp_srvr: Update function table
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/dlp/dlp_srvr.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/dlp/dlp_srvr.cpp b/src/core/hle/service/dlp/dlp_srvr.cpp
index 49d5b8d1c..25c07f401 100644
--- a/src/core/hle/service/dlp/dlp_srvr.cpp
+++ b/src/core/hle/service/dlp/dlp_srvr.cpp
@@ -22,7 +22,14 @@ static void unk_0x000E0040(Interface* self) {
22const Interface::FunctionInfo FunctionTable[] = { 22const Interface::FunctionInfo FunctionTable[] = {
23 {0x00010183, nullptr, "Initialize"}, 23 {0x00010183, nullptr, "Initialize"},
24 {0x00020000, nullptr, "Finalize"}, 24 {0x00020000, nullptr, "Finalize"},
25 {0x00030000, nullptr, "GetServerState"},
26 {0x00050080, nullptr, "StartAccepting"},
27 {0x00070000, nullptr, "StartDistribution"},
25 {0x000800C0, nullptr, "SendWirelessRebootPassphrase"}, 28 {0x000800C0, nullptr, "SendWirelessRebootPassphrase"},
29 {0x00090040, nullptr, "AcceptClient"},
30 {0x000B0042, nullptr, "GetConnectingClients"},
31 {0x000C0040, nullptr, "GetClientInfo"},
32 {0x000D0040, nullptr, "GetClientState"},
26 {0x000E0040, unk_0x000E0040, "unk_0x000E0040"}, 33 {0x000E0040, unk_0x000E0040, "unk_0x000E0040"},
27}; 34};
28 35