diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-27 14:32:39 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-27 14:50:24 -0400 |
| commit | 04d144aa40009811268a6fe485ef74fc23f2fb0c (patch) | |
| tree | 026021f7a043f6f622ec841f49aa8022d786084e /src/core/hle/service/nfc/nfc.h | |
| parent | dc4e5f91596392bcdfb316105f80feea636c72c2 (diff) | |
service: Add nfc services
Adds the skeleton of the nfc service based off the information provided
on Switch Brew.
Diffstat (limited to 'src/core/hle/service/nfc/nfc.h')
| -rw-r--r-- | src/core/hle/service/nfc/nfc.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/hle/service/nfc/nfc.h b/src/core/hle/service/nfc/nfc.h new file mode 100644 index 000000000..4d2d815f9 --- /dev/null +++ b/src/core/hle/service/nfc/nfc.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::NFC { + +void InstallInterfaces(SM::ServiceManager& sm); + +} // namespace Service::NFC |
