mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
aa8a369e2a
* Rpc: add desktop service * Protobuf: sync to latest release. Desktop: rewrite PIN locking, finalize locking API * Desktop: cleanup code a little bit
11 lines
281 B
C
11 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);
|