forked from len0rd/rockbox
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
11 lines
297 B
C
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
|