Flipper Zero Firmware
Loading...
Searching...
No Matches
sd_notify.h
1#pragma once
2#include <furi.h>
3#include <notification/notification_messages.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9void sd_notify_wait(NotificationApp* notifications);
10void sd_notify_wait_off(NotificationApp* notifications);
11void sd_notify_success(NotificationApp* notifications);
12void sd_notify_eject(NotificationApp* notifications);
13void sd_notify_error(NotificationApp* notifications);
14
15#ifdef __cplusplus
16}
17#endif
Definition notification_app.h:49