mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
19 lines
558 B
C
19 lines
558 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
#include "../helpers/flipbip_custom_event.h"
|
|
|
|
typedef struct FlipBipStartscreen FlipBipStartscreen;
|
|
|
|
typedef void (*FlipBipStartscreenCallback)(FlipBipCustomEvent event, void* context);
|
|
|
|
void flipbip_startscreen_set_callback(
|
|
FlipBipStartscreen* flipbip_startscreen,
|
|
FlipBipStartscreenCallback callback,
|
|
void* context);
|
|
|
|
View* flipbip_startscreen_get_view(FlipBipStartscreen* flipbip_static);
|
|
|
|
FlipBipStartscreen* flipbip_startscreen_alloc();
|
|
|
|
void flipbip_startscreen_free(FlipBipStartscreen* flipbip_static); |