mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 04:01:05 +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/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
|
||||
|
@ -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";
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user