Style fix

This commit is contained in:
Kevin Hartman 2015-02-17 20:17:43 -08:00
parent 12a4279177
commit e1008c862d
2 changed files with 19 additions and 10 deletions

View File

@ -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"
@ -9,7 +13,10 @@ namespace DLP_SRVR {
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class // Interface class
const Interface::FunctionInfo FunctionTable[] = {{}};
Interface::Interface() { Interface::Interface() {
Register(FunctionTable);
} }
} // namespace } // namespace

View File

@ -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"
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////