mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-26 22:40:25 +00:00
03196fa110
* cleanup of various warnings from clangs * lfrfid_debug: cast fixes * subghz: binraw: round->roundf * furi: thread: updated internal stack size variable to size_t * github: fail faster on unsuccessful build * unit_tests: double trouble
24 lines
678 B
C
24 lines
678 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
#include "desktop_events.h"
|
|
#include "../helpers/slideshow_filename.h"
|
|
#include <storage/storage.h>
|
|
|
|
#define SLIDESHOW_FS_PATH INT_PATH(SLIDESHOW_FILE_NAME)
|
|
|
|
typedef struct DesktopSlideshowView DesktopSlideshowView;
|
|
|
|
typedef void (*DesktopSlideshowViewCallback)(DesktopEvent event, void* context);
|
|
|
|
DesktopSlideshowView* desktop_view_slideshow_alloc(void);
|
|
|
|
void desktop_view_slideshow_free(DesktopSlideshowView* main_view);
|
|
|
|
View* desktop_view_slideshow_get_view(DesktopSlideshowView* main_view);
|
|
|
|
void desktop_view_slideshow_set_callback(
|
|
DesktopSlideshowView* main_view,
|
|
DesktopSlideshowViewCallback callback,
|
|
void* context);
|