mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 20:59:50 +04:00
* Fixing PVS warns * pvs: additional fixes --------- Co-authored-by: hedger <hedger@nanode.su>
23 lines
408 B
C
23 lines
408 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); //-V658
|
|
|
|
typedef struct {
|
|
uint32_t state;
|
|
} AppScene;
|
|
|
|
struct SceneManager {
|
|
SceneManagerIdStack_t scene_id_stack;
|
|
const SceneManagerHandlers* scene_handlers;
|
|
void* context;
|
|
AppScene scene[];
|
|
};
|