2010-05-25 15:19:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Robert Bieber
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SYMBOLS_H
|
|
|
|
#define SYMBOLS_H
|
|
|
|
|
2010-05-31 17:39:58 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-05-25 15:19:52 +00:00
|
|
|
/* Symbol definitions for WPS parsing */
|
|
|
|
|
|
|
|
#define TAGSYM '%'
|
|
|
|
#define COMMENTSYM '#'
|
|
|
|
#define CONDITIONSYM '?'
|
|
|
|
#define MULTILINESYM ';'
|
|
|
|
#define ARGLISTOPENSYM '('
|
|
|
|
#define ARGLISTCLOSESYM ')'
|
2010-11-05 09:51:19 +00:00
|
|
|
#define ARGLISTSEPARATESYM ','
|
|
|
|
#define ENUMLISTSEPARATESYM '|'
|
2010-05-25 17:22:39 +00:00
|
|
|
#define ENUMLISTOPENSYM '<'
|
|
|
|
#define ENUMLISTCLOSESYM '>'
|
2010-05-25 15:19:52 +00:00
|
|
|
#define DEFAULTSYM '-'
|
|
|
|
|
2010-05-31 17:39:58 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-05-25 15:19:52 +00:00
|
|
|
#endif /* SYMBOLS_H */
|