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);
|