boss.cpp 518 B

12345678910111213141516171819202122232425
  1. // Copyright 2015 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/service.h"
  5. #include "core/hle/service/boss/boss.h"
  6. #include "core/hle/service/boss/boss_p.h"
  7. #include "core/hle/service/boss/boss_u.h"
  8. namespace Service {
  9. namespace BOSS {
  10. void Init() {
  11. using namespace Kernel;
  12. AddService(new BOSS_P_Interface);
  13. AddService(new BOSS_U_Interface);
  14. }
  15. void Shutdown() {
  16. }
  17. } // namespace BOSS
  18. } // namespace Service