blob: 2f870393e8b3dda9d4a51882d0fd4da7b9a2379a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <stdbool.h>
#ifdef ROCKBOX
#include "lib/display_text.h"
#endif
/* defined in help/ */
extern const char help_text[];
#if defined(ROCKBOX) || defined(LZ4TINY)
extern const char quick_help_text[];
extern const unsigned short help_text_len, quick_help_text_len, help_text_words;
#endif
#if defined(ROCKBOX)
extern struct style_text help_text_style[];
#endif
extern const bool help_valid;
|