2034b6ac4a
* PIN Lock refactoring * Change tv.ir file type to prevent opening from archive * Manifest update * Assets: enforce sorting in fs traversal Co-authored-by: あく <alleteam@gmail.com>
22 lines
525 B
C
22 lines
525 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include "../desktop.h"
|
|
#include "../desktop_settings/desktop_settings.h"
|
|
|
|
void desktop_pin_lock_error_notify();
|
|
|
|
uint32_t desktop_pin_lock_get_fail_timeout();
|
|
|
|
void desktop_pin_lock();
|
|
|
|
void desktop_pin_unlock();
|
|
|
|
bool desktop_pin_lock_is_locked();
|
|
|
|
void desktop_pin_lock_init(DesktopSettings* settings);
|
|
|
|
bool desktop_pin_lock_verify(const PinCode* pin_set, const PinCode* pin_entered);
|
|
|
|
bool desktop_pins_are_equal(const PinCode* pin_code1, const PinCode* pin_code2);
|