early-access version 1255

This commit is contained in:
pineappleEA
2020-12-28 15:15:37 +00:00
parent 84b39492d1
commit 78b48028e1
6254 changed files with 1868140 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/set/set.h"
#include "core/hle/service/set/set_cal.h"
#include "core/hle/service/set/set_fd.h"
#include "core/hle/service/set/set_sys.h"
#include "core/hle/service/set/settings.h"
#include "core/hle/service/sm/sm.h"
namespace Service::Set {
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) {
std::make_shared<SET>(system)->InstallAsService(service_manager);
std::make_shared<SET_CAL>(system)->InstallAsService(service_manager);
std::make_shared<SET_FD>(system)->InstallAsService(service_manager);
std::make_shared<SET_SYS>(system)->InstallAsService(service_manager);
}
} // namespace Service::Set