2015-06-11 15:12:16 -07:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/hle/service/boss/boss.h"
|
|
|
|
#include "core/hle/service/boss/boss_p.h"
|
|
|
|
#include "core/hle/service/boss/boss_u.h"
|
2016-09-17 17:38:01 -07:00
|
|
|
#include "core/hle/service/service.h"
|
2015-06-11 15:12:16 -07:00
|
|
|
|
|
|
|
namespace Service {
|
|
|
|
namespace BOSS {
|
|
|
|
|
|
|
|
void Init() {
|
|
|
|
using namespace Kernel;
|
|
|
|
|
|
|
|
AddService(new BOSS_P_Interface);
|
|
|
|
AddService(new BOSS_U_Interface);
|
|
|
|
}
|
|
|
|
|
2016-09-18 18:01:46 -07:00
|
|
|
void Shutdown() {}
|
2015-06-11 15:12:16 -07:00
|
|
|
|
|
|
|
} // namespace BOSS
|
|
|
|
|
|
|
|
} // namespace Service
|