1
0
Fork 0
forked from len0rd/rockbox
foxbox/apps/plugins/puzzles/help.h
Franklin Wei 77641d59a7 puzzles: add formatting to help viewer
The help text is now processed to generate a style array to pass to the
display_text library in addition to the text itself. The help text is still
compressed using LZ4, and still fits on the c200v2.

Change-Id: I7a3a664f90f67a1a018956c72d2b62d92b8ffd17
2018-03-17 22:54:21 -04:00

11 lines
297 B
C

#ifdef ROCKBOX
#include "lib/display_text.h"
#endif
/* defined in help/ */
extern const char help_text[];
#ifdef ROCKBOX
extern const char quick_help_text[];
extern const struct style_text help_text_style[];
extern const unsigned short help_text_len, quick_help_text_len, help_text_words;
#endif