mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
12 lines
257 B
C
12 lines
257 B
C
|
#pragma once
|
||
|
|
||
|
typedef struct PowerUnplugUsb PowerUnplugUsb;
|
||
|
|
||
|
#include <gui/view.h>
|
||
|
|
||
|
PowerUnplugUsb* power_unplug_usb_alloc();
|
||
|
|
||
|
void power_unplug_usb_free(PowerUnplugUsb* power_unplug_usb);
|
||
|
|
||
|
View* power_unplug_usb_get_view(PowerUnplugUsb* power_unplug_usb);
|