[FL-2627] Flipper applications: SDK, build and debug system (#1387)

This commit is contained in:
SG
2022-09-15 02:11:38 +10:00
committed by GitHub
parent 0f6f9ad52e
commit 873e1f114b
895 changed files with 8862 additions and 1465 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
typedef struct PowerOff PowerOff;
typedef enum {
PowerOffResponseDefault,
PowerOffResponseOk,
PowerOffResponseCancel,
PowerOffResponseHide,
} PowerOffResponse;
#include <gui/view.h>
PowerOff* power_off_alloc();
void power_off_free(PowerOff* power_off);
View* power_off_get_view(PowerOff* power_off);
void power_off_set_time_left(PowerOff* power_off, uint8_t time_left);
PowerOffResponse power_off_get_response(PowerOff* power_off);