A modern, network-enabled music player platform built on Rockbox technology.
rockboxd.tsiry-sandratraina.com
rust
deno
navidrome
airplay
libadwaita
zig
mpris
snapcast
mpd
rockbox
audio
subsonic
1.4 kB
48 lines
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2010 Robert Bieber
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#ifndef SYMBOLS_H
22#define SYMBOLS_H
23
24#ifdef __cplusplus
25extern "C"
26{
27#endif
28
29
30/* Symbol definitions for WPS parsing */
31
32#define TAGSYM '%'
33#define COMMENTSYM '#'
34#define CONDITIONSYM '?'
35#define MULTILINESYM ';'
36#define ARGLISTOPENSYM '('
37#define ARGLISTCLOSESYM ')'
38#define ARGLISTSEPARATESYM ','
39#define ENUMLISTSEPARATESYM '|'
40#define ENUMLISTOPENSYM '<'
41#define ENUMLISTCLOSESYM '>'
42#define DEFAULTSYM '-'
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif /* SYMBOLS_H */