mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
7724bac58a
This reverts commit935c2df029
, reversing changes made to524b602700
.
13 lines
263 B
C
13 lines
263 B
C
#pragma once
|
|
|
|
typedef struct PowerOff PowerOff;
|
|
|
|
#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);
|