// SPDX-License-Identifier: MPL-2.0 // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) #pragma once #include namespace skyline::service::nfp { /** * @brief IUserManager or nfp:user is used by applications to open an IUser instance for accessing NFC devices * @url https://switchbrew.org/wiki/NFC_services#nfp:user */ class IUserManager : public BaseService { public: IUserManager(const DeviceState &state, ServiceManager &manager); /** * @brief Opens an IUser that can be used by applications to access NFC devices */ Result CreateUserInterface(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response); SERVICE_DECL( SFUNC(0x0, IUserManager, CreateUserInterface) ) }; }