unleashed-firmware/applications/services/dialogs/dialogs_i.h
Sergey Gavrilov 761a14e6e2
[FL-2837][FL-3270] Loader refaptoring: second encounter (#2779)
* Core: rename internal FlipperApplication to FlipperInternalApplication
* FAP Loader: move load_name_and_icon to flipper_application library
* Loader menu: rework api
* View holder: move to gui service
* Loader: simple "loading" worker
* Loader: applications dialog
* Loader: fapping
* Update f18 api
* Apps: remove fap_loader
* Libs, flipper application: store args, rename thread allocation
* Loader: error handling
* Apps: use loader error handling
* Loader: documentation
* FBT: accomodate loader
* Loader: do not raise gui error if loader is locked
* Archive: accomodate loader
* Loader: fix loading message
* Flipper: drop some old dolphin legacy
* Loader: generalize error construction

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2023-06-23 21:01:40 +09:00

16 lines
259 B
C

#pragma once
#include "dialogs.h"
#include "dialogs_message.h"
#include <gui/view_holder.h>
#include <gui/modules/file_browser.h>
#ifdef __cplusplus
extern "C" {
#endif
struct DialogsApp {
FuriMessageQueue* message_queue;
};
#ifdef __cplusplus
}
#endif