mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-13 05:06:30 +04:00
14 lines
309 B
C
14 lines
309 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <gui/view.h>
|
||
|
|
|
||
|
|
typedef struct JsConsoleView JsConsoleView;
|
||
|
|
|
||
|
|
JsConsoleView* console_view_alloc(void);
|
||
|
|
|
||
|
|
void console_view_free(JsConsoleView* console_view);
|
||
|
|
|
||
|
|
View* console_view_get_view(JsConsoleView* console_view);
|
||
|
|
|
||
|
|
void console_view_print(JsConsoleView* console_view, const char* text);
|