A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita
audio
rust
zig
deno
mpris
rockbox
mpd
1#include <stdbool.h>
2
3#ifdef ROCKBOX
4#include "lib/display_text.h"
5#endif
6
7/* Normally, these are defined in help/*.c. If the game lacks help
8 * text (i.e. it is an unfinished game), there are weak dummy
9 * definitions in dummy/nullhelp.c. */
10extern const char help_text[];
11#if defined(ROCKBOX) || defined(LZ4TINY)
12extern const char quick_help_text[];
13extern const unsigned short help_text_len, quick_help_text_len, help_text_words;
14#endif
15
16#if defined(ROCKBOX)
17extern struct style_text help_text_style[];
18#endif
19
20extern const bool help_text_valid, quick_help_valid;