diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-25 19:04:31 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-25 22:13:39 -0400 |
| commit | 821f2c03cb1a0778d2fb48abfb971357a06c5445 (patch) | |
| tree | c0ddf2d3c9ac3c7d4e470b430f4640279542222c /src/core/hle/service/erpt/erpt.h | |
| parent | d245610939219a3631a9a1850ffd8a504ce7d9d8 (diff) | |
service: Add the erpt services
Adds the basic skeleton of the erpt service based off information on
Switch Brew.
Diffstat (limited to 'src/core/hle/service/erpt/erpt.h')
| -rw-r--r-- | src/core/hle/service/erpt/erpt.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/erpt/erpt.h b/src/core/hle/service/erpt/erpt.h new file mode 100644 index 000000000..de439ab6d --- /dev/null +++ b/src/core/hle/service/erpt/erpt.h @@ -0,0 +1,16 @@ +// 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::ERPT { + +/// Registers all ERPT services with the specified service manager. +void InstallInterfaces(SM::ServiceManager& sm); + +} // namespace Service::ERPT |
