 a7283280ef
			
		
	
	
		a7283280ef
		
			
		
	
	
	
	
		
			
			* GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon API. * Gui: icon and animation draw now do not accept null pointer * Format Sources * Fix no debug build * Furi: stricter checks in memmgr
		
			
				
	
	
		
			19 lines
		
	
	
		
			277 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			277 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdint.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct Icon Icon;
 | |
| 
 | |
| uint8_t icon_get_width(const Icon* instance);
 | |
| 
 | |
| uint8_t icon_get_height(const Icon* instance);
 | |
| 
 | |
| const uint8_t* icon_get_data(const Icon* instance);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif |