mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-02 17:29:14 +00:00
16 lines
316 B
C
16 lines
316 B
C
|
#pragma once
|
||
|
#include <furi.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct LoaderApplications LoaderApplications;
|
||
|
|
||
|
LoaderApplications* loader_applications_alloc(void (*closed_cb)(void*), void* context);
|
||
|
|
||
|
void loader_applications_free(LoaderApplications* loader_applications);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|