#pragma once #include #include #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; };