mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-20 20:01:54 +03:00
12 lines
281 B
C
12 lines
281 B
C
|
#pragma once
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
#include "../desktop.h"
|
||
|
#include <desktop/desktop_settings.h>
|
||
|
|
||
|
void desktop_pin_lock_error_notify();
|
||
|
|
||
|
uint32_t desktop_pin_lock_get_fail_timeout();
|
||
|
|
||
|
bool desktop_pin_compare(const PinCode* pin_code1, const PinCode* pin_code2);
|