From e1008c862d7f30b8400081ed63d5b1830eb6cc05 Mon Sep 17 00:00:00 2001 From: Kevin Hartman Date: Tue, 17 Feb 2015 20:17:43 -0800 Subject: [PATCH] Style fix --- src/core/hle/service/dlp_srvr.cpp | 17 ++++++++++++----- src/core/hle/service/dlp_srvr.h | 12 +++++++----- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/src/core/hle/service/dlp_srvr.cpp b/src/core/hle/service/dlp_srvr.cpp index b57e13993..ff1485e73 100644 --- a/src/core/hle/service/dlp_srvr.cpp +++ b/src/core/hle/service/dlp_srvr.cpp @@ -1,3 +1,7 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + #include "core/hle/hle.h" #include "core/hle/service/dlp_srvr.h" @@ -6,10 +10,13 @@ namespace DLP_SRVR { - //////////////////////////////////////////////////////////////////////////////////////////////////// - // Interface class - - Interface::Interface() { - } +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Interface class + +const Interface::FunctionInfo FunctionTable[] = {{}}; + +Interface::Interface() { + Register(FunctionTable); +} } // namespace diff --git a/src/core/hle/service/dlp_srvr.h b/src/core/hle/service/dlp_srvr.h index 62aa023a8..4b12bf0f4 100644 --- a/src/core/hle/service/dlp_srvr.h +++ b/src/core/hle/service/dlp_srvr.h @@ -2,6 +2,8 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#pragma once + #include "core/hle/service/service.h" //////////////////////////////////////////////////////////////////////////////////////////////////// @@ -9,12 +11,12 @@ namespace DLP_SRVR { - /// Interface to "dlp:" service - class Interface : public Service::Interface { - public: - Interface(); +/// Interface to "dlp:" service +class Interface : public Service::Interface { +public: + Interface(); - std::string GetPortName() const override { + std::string GetPortName() const override { return "dlp:SRVR"; } };