blob: 9125364bc8859d818c5f7426646690390d2c5fe8 (
plain) (
tree)
|
|
// 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/cecd_u.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace CECD_U
namespace CECD_U {
// Empty arrays are illegal -- commented out until an entry is added.
//const Interface::FunctionInfo FunctionTable[] = { };
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
Interface::Interface() {
//Register(FunctionTable);
}
} // namespace
|