summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/dlp/dlp_srvr.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-06-05 01:38:54 +0200
committerLioncash <mathew1800@gmail.com>2016-06-05 01:43:33 +0200
commit64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70 (patch)
treefeab9094d3ac6745f50389e1bf3ce962ababbe64 /src/core/hle/service/dlp/dlp_srvr.cpp
parentMerge pull request #1863 from mailwl/gpu-threadid-reset (diff)
downloadyuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar
yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar.gz
yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar.bz2
yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar.lz
yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar.xz
yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar.zst
yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/dlp/dlp_srvr.cpp (renamed from src/core/hle/service/dlp_srvr.cpp)22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/core/hle/service/dlp_srvr.cpp b/src/core/hle/service/dlp/dlp_srvr.cpp
index 1f30188da..da9b30f56 100644
--- a/src/core/hle/service/dlp_srvr.cpp
+++ b/src/core/hle/service/dlp/dlp_srvr.cpp
@@ -2,16 +2,15 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include "common/common_types.h"
#include "common/logging/log.h"
-#include "core/hle/hle.h"
-#include "core/hle/service/dlp_srvr.h"
+#include "core/hle/result.h"
+#include "core/hle/service/dlp/dlp_srvr.h"
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace DLP_SRVR
+namespace Service {
+namespace DLP {
-namespace DLP_SRVR {
-
-static void unk_0x000E0040(Service::Interface* self) {
+static void unk_0x000E0040(Interface* self) {
u32* cmd_buff = Kernel::GetCommandBuffer();
cmd_buff[1] = RESULT_SUCCESS.raw;
@@ -23,14 +22,13 @@ static void unk_0x000E0040(Service::Interface* self) {
const Interface::FunctionInfo FunctionTable[] = {
{0x00010183, nullptr, "Initialize"},
{0x00020000, nullptr, "Finalize"},
+ {0x000800C0, nullptr, "SendWirelessRebootPassphrase"},
{0x000E0040, unk_0x000E0040, "unk_0x000E0040"},
};
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// Interface class
-
-Interface::Interface() {
+DLP_SRVR_Interface::DLP_SRVR_Interface() {
Register(FunctionTable);
}
-} // namespace
+} // namespace DLP
+} // namespace Service