* CLI: session refactoring * Added forgotten define * Desktop lock state save * Dolphin: use proper type for value returned by dolphin_state_xp_to_levelup Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			575 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			575 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(DesktopSettings* settings);
 | 
						|
 | 
						|
void desktop_pin_unlock(DesktopSettings* settings);
 | 
						|
 | 
						|
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);
 |