mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-17 09:20:07 +00:00
4175712976
Adds the skeleton for the ETicket service based off the information on Switch Brew
17 lines
369 B
C++
17 lines
369 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace Service::SM {
|
|
class ServiceManager;
|
|
}
|
|
|
|
namespace Service::ES {
|
|
|
|
/// Registers all ES services with the specified service manager.
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
} // namespace Service::ES
|