sd_notify.h 423 B

1234567891011121314151617
  1. #pragma once
  2. #include <furi.h>
  3. #include <notification/notification_messages.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. void sd_notify_wait(NotificationApp* notifications);
  8. void sd_notify_wait_off(NotificationApp* notifications);
  9. void sd_notify_success(NotificationApp* notifications);
  10. void sd_notify_eject(NotificationApp* notifications);
  11. void sd_notify_error(NotificationApp* notifications);
  12. #ifdef __cplusplus
  13. }
  14. #endif