 1c0276a0be
			
		
	
	
		1c0276a0be
		
			
		
	
	
	
	
		
			
			* FuriHal: lower MGG display contrast by 4 points * FuriHal: unify external gpio resources initialization * Infrared: parse raw in universal TV file, cleanup it with new ifrared script. Other minor changes. * Gui: fix elements_multiline_text_aligned eating symbols * Lib: human readable errors in flipper application package * Special request from marketing team
		
			
				
	
	
		
			15 lines
		
	
	
		
			400 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			400 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gui/view.h>
 | |
| 
 | |
| typedef struct Hid Hid;
 | |
| typedef struct HidMouseClicker HidMouseClicker;
 | |
| 
 | |
| HidMouseClicker* hid_mouse_clicker_alloc(Hid* bt_hid);
 | |
| 
 | |
| void hid_mouse_clicker_free(HidMouseClicker* hid_mouse_clicker);
 | |
| 
 | |
| View* hid_mouse_clicker_get_view(HidMouseClicker* hid_mouse_clicker);
 | |
| 
 | |
| void hid_mouse_clicker_set_connected_status(HidMouseClicker* hid_mouse_clicker, bool connected);
 |