More services & small clean ups

This commit is contained in:
purpasmart96
2014-12-21 11:52:10 -08:00
parent ae76469373
commit 9796bc1fa2
61 changed files with 367 additions and 309 deletions

View File

@ -11,18 +11,15 @@
namespace BOSS_U {
const Interface::FunctionInfo FunctionTable[] = {
{0x00020100, nullptr, "GetStorageInfo"},
};
const Interface::FunctionInfo FunctionTable[] = {
{0x00020100, nullptr, "GetStorageInfo"},
};
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
Interface::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
Interface::~Interface() {
}
Interface::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
} // namespace