2014-12-15 06:50:54 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/log.h"
|
|
|
|
#include "core/hle/hle.h"
|
|
|
|
#include "core/hle/service/cecd_u.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace CECD_U
|
|
|
|
|
|
|
|
namespace CECD_U {
|
|
|
|
|
2014-12-16 03:37:13 +00:00
|
|
|
// Empty arrays are illegal -- commented out until an entry is added.
|
|
|
|
//const Interface::FunctionInfo FunctionTable[] = { };
|
|
|
|
|
2014-12-15 06:50:54 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
2014-12-16 03:37:13 +00:00
|
|
|
//Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
2014-12-15 06:50:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|