mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
17 lines
339 B
C
17 lines
339 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <gui/view.h>
|
|
#include "desktop_events.h"
|
|
|
|
typedef struct DesktopDebugView DesktopDebugView;
|
|
|
|
typedef void (*DesktopDebugViewCallback)(DesktopEvent event, void* context);
|
|
|
|
struct DesktopDebugView {
|
|
View* view;
|
|
FuriTimer* timer;
|
|
DesktopDebugViewCallback callback;
|
|
void* context;
|
|
};
|