 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
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <assets_icons.h>
 | |
| 
 | |
| typedef struct {
 | |
|     const FuriThreadCallback app;
 | |
|     const char* name;
 | |
|     const size_t stack_size;
 | |
|     const Icon* icon;
 | |
| } FlipperApplication;
 | |
| 
 | |
| typedef void (*FlipperOnStartHook)(void);
 | |
| 
 | |
| /* Services list
 | |
|  * Spawned on startup
 | |
|  */
 | |
| extern const FlipperApplication FLIPPER_SERVICES[];
 | |
| extern const size_t FLIPPER_SERVICES_COUNT;
 | |
| 
 | |
| /* Apps list
 | |
|  * Spawned by app-loader
 | |
|  */
 | |
| extern const FlipperApplication FLIPPER_APPS[];
 | |
| extern const size_t FLIPPER_APPS_COUNT;
 | |
| 
 | |
| /* On system start hooks
 | |
|  * Called by app-loader, after OS initialization complete
 | |
|  */
 | |
| extern const FlipperOnStartHook FLIPPER_ON_SYSTEM_START[];
 | |
| extern const size_t FLIPPER_ON_SYSTEM_START_COUNT;
 | |
| 
 | |
| /* Plugins list
 | |
|  * Spawned by app-loader
 | |
|  */
 | |
| extern const FlipperApplication FLIPPER_PLUGINS[];
 | |
| extern const size_t FLIPPER_PLUGINS_COUNT;
 | |
| 
 | |
| /* Debug menu apps
 | |
|  * Spawned by app-loader
 | |
|  */
 | |
| extern const FlipperApplication FLIPPER_DEBUG_APPS[];
 | |
| extern const size_t FLIPPER_DEBUG_APPS_COUNT;
 | |
| 
 | |
| /* Seperate scene app holder
 | |
|  * Spawned by app-loader
 | |
|  */
 | |
| extern const FlipperApplication FLIPPER_SCENE;
 | |
| extern const FlipperApplication FLIPPER_SCENE_APPS[];
 | |
| extern const size_t FLIPPER_SCENE_APPS_COUNT;
 | |
| 
 | |
| extern const FlipperApplication FLIPPER_ARCHIVE;
 | |
| 
 | |
| /* Settings list
 | |
|  * Spawned by app-loader
 | |
|  */
 | |
| extern const FlipperApplication FLIPPER_SETTINGS_APPS[];
 | |
| extern const size_t FLIPPER_SETTINGS_APPS_COUNT; |