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/common | |
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/common')
-rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/log.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index ad9edbcdf0..bcdb69321b 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -176,6 +176,7 @@ void FileBackend::Write(const Entry& entry) { SUB(Service, LDN) \ SUB(Service, LM) \ SUB(Service, MM) \ + SUB(Service, NFC) \ SUB(Service, NFP) \ SUB(Service, NIFM) \ SUB(Service, NS) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index ad3cbf5d15..3a61c75318 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -63,6 +63,7 @@ enum class Class : ClassType { Service_LDN, ///< The LDN (Local domain network) service Service_LM, ///< The LM (Logger) service Service_MM, ///< The MM (Multimedia) service + Service_NFC, ///< The NFC (Near-field communication) service Service_NFP, ///< The NFP service Service_NIFM, ///< The NIFM (Network interface) service Service_NS, ///< The NS services |