/* * Copyright (C) 2024 The LineageOS Project * * SPDX-License-Identifier: Apache-2.0 */ #include "Fingerprint.h" namespace aidl { namespace android { namespace hardware { namespace biometrics { namespace fingerprint { ndk::ScopedAStatus Fingerprint::getSensorProps(std::vector* /*out*/) { return ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION); } ndk::ScopedAStatus Fingerprint::createSession(int32_t /*sensorId*/, int32_t /*userId*/, const std::shared_ptr& /*cb*/, std::shared_ptr* /*out*/) { return ndk::ScopedAStatus::fromExceptionCode(EX_UNSUPPORTED_OPERATION); } } // namespace fingerprint } // namespace biometrics } // namespace hardware } // namespace android } // namespace aidl