Files
Momentum-Firmware/applications/services/desktop/views/desktop_view_debug.h
2024-03-25 13:53:32 +03:00

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;
};