yuzu-mainline/src/core/hle/service/boss_u.cpp

25 lines
642 B
C++
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-16 21:38:14 -08:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/hle.h"
#include "core/hle/service/boss_u.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace BOSS_U
namespace BOSS_U {
2014-12-21 11:52:10 -08:00
const Interface::FunctionInfo FunctionTable[] = {
{0x00020100, nullptr, "GetStorageInfo"},
};
2014-12-21 11:52:10 -08:00
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
2014-12-21 11:52:10 -08:00
Interface::Interface() {
2015-01-30 10:56:49 -08:00
Register(FunctionTable);
2014-12-21 11:52:10 -08:00
}
} // namespace