mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
611b7e15ed
* Add permission fix (no execute bit for source files) to fbt lint|format * Remove execute bit from 59 source files using fbt format * Also list which permissions are unwanted in lint.py * Also remove exec permissions from lib/../rfal_nfc.c Co-authored-by: あく <alleteam@gmail.com>
22 lines
399 B
C
22 lines
399 B
C
/**
|
|
* @file scene_manager_i.h
|
|
* GUI: internal SceneManager API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "scene_manager.h"
|
|
#include <m-array.h>
|
|
|
|
ARRAY_DEF(SceneManagerIdStack, uint32_t, M_DEFAULT_OPLIST);
|
|
|
|
typedef struct {
|
|
uint32_t state;
|
|
} AppScene;
|
|
|
|
struct SceneManager {
|
|
SceneManagerIdStack_t scene_id_stack;
|
|
const SceneManagerHandlers* scene_handlers;
|
|
AppScene* scene;
|
|
void* context;
|
|
};
|