mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 06:41:04 +00:00
Style fix
This commit is contained in:
parent
12a4279177
commit
e1008c862d
@ -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/hle.h"
|
||||||
#include "core/hle/service/dlp_srvr.h"
|
#include "core/hle/service/dlp_srvr.h"
|
||||||
|
|
||||||
@ -6,10 +10,13 @@
|
|||||||
|
|
||||||
namespace DLP_SRVR {
|
namespace DLP_SRVR {
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// Interface class
|
// Interface class
|
||||||
|
|
||||||
Interface::Interface() {
|
const Interface::FunctionInfo FunctionTable[] = {{}};
|
||||||
}
|
|
||||||
|
Interface::Interface() {
|
||||||
|
Register(FunctionTable);
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
// Licensed under GPLv2 or any later version
|
// Licensed under GPLv2 or any later version
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
#include "core/hle/service/service.h"
|
#include "core/hle/service/service.h"
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
@ -9,12 +11,12 @@
|
|||||||
|
|
||||||
namespace DLP_SRVR {
|
namespace DLP_SRVR {
|
||||||
|
|
||||||
/// Interface to "dlp:" service
|
/// Interface to "dlp:" service
|
||||||
class Interface : public Service::Interface {
|
class Interface : public Service::Interface {
|
||||||
public:
|
public:
|
||||||
Interface();
|
Interface();
|
||||||
|
|
||||||
std::string GetPortName() const override {
|
std::string GetPortName() const override {
|
||||||
return "dlp:SRVR";
|
return "dlp:SRVR";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user