diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-27 13:06:11 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-27 13:06:11 -0700 |
| commit | 833ebbb6269c21dbc9cef7f70f6c3bb4e2bc776c (patch) | |
| tree | d16c8f5777d31ea4f36f421984cacd74584243ef /src/core/hle/service/lbl/lbl.h | |
| parent | d2749ef0ed4fea642bd3e0caa54c49211120f62a (diff) | |
| parent | ea8dd8b6505deddf0057203d73c9524b81d7af9f (diff) | |
Merge pull request #844 from lioncash/lbl
service: Add the lbl service
Diffstat (limited to 'src/core/hle/service/lbl/lbl.h')
| -rw-r--r-- | src/core/hle/service/lbl/lbl.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/hle/service/lbl/lbl.h b/src/core/hle/service/lbl/lbl.h new file mode 100644 index 000000000..bf6f400f8 --- /dev/null +++ b/src/core/hle/service/lbl/lbl.h @@ -0,0 +1,15 @@ +// 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::LBL { + +void InstallInterfaces(SM::ServiceManager& sm); + +} // namespace Service::LBL |
