mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-16 16:15:45 -04:00
dep: Add libcue
This commit is contained in:
126
dep/libcue/src/cue_parser.h
Normal file
126
dep/libcue/src/cue_parser.h
Normal file
@ -0,0 +1,126 @@
|
||||
/* A Bison parser, made by GNU Bison 3.3.2. */
|
||||
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation,
|
||||
Inc.
|
||||
|
||||
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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
/* As a special exception, you may create a larger work that contains
|
||||
part or all of the Bison parser skeleton and distribute that work
|
||||
under terms of your choice, so long as that work isn't itself a
|
||||
parser generator using the skeleton or a modified version thereof
|
||||
as a parser skeleton. Alternatively, if you modify or redistribute
|
||||
the parser skeleton itself, you may (at your option) remove this
|
||||
special exception, which will cause the skeleton and the resulting
|
||||
Bison output files to be licensed under the GNU General Public
|
||||
License without this special exception.
|
||||
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
/* Undocumented macros, especially those whose name start with YY_,
|
||||
are private implementation details. Do not rely on them. */
|
||||
|
||||
#ifndef YY_YY_CUE_PARSER_H_INCLUDED
|
||||
# define YY_YY_CUE_PARSER_H_INCLUDED
|
||||
/* Debug traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 0
|
||||
#endif
|
||||
#if YYDEBUG
|
||||
extern int yydebug;
|
||||
#endif
|
||||
|
||||
/* Token type. */
|
||||
#ifndef YYTOKENTYPE
|
||||
# define YYTOKENTYPE
|
||||
enum yytokentype
|
||||
{
|
||||
NUMBER = 258,
|
||||
STRING = 259,
|
||||
CATALOG = 260,
|
||||
CDTEXTFILE = 261,
|
||||
FFILE = 262,
|
||||
BINARY = 263,
|
||||
MOTOROLA = 264,
|
||||
AIFF = 265,
|
||||
WAVE = 266,
|
||||
MP3 = 267,
|
||||
FLAC = 268,
|
||||
TRACK = 269,
|
||||
AUDIO = 270,
|
||||
MODE1_2048 = 271,
|
||||
MODE1_2352 = 272,
|
||||
MODE2_2336 = 273,
|
||||
MODE2_2048 = 274,
|
||||
MODE2_2342 = 275,
|
||||
MODE2_2332 = 276,
|
||||
MODE2_2352 = 277,
|
||||
TRACK_ISRC = 278,
|
||||
FLAGS = 279,
|
||||
PRE = 280,
|
||||
DCP = 281,
|
||||
FOUR_CH = 282,
|
||||
SCMS = 283,
|
||||
PREGAP = 284,
|
||||
INDEX = 285,
|
||||
POSTGAP = 286,
|
||||
TITLE = 287,
|
||||
PERFORMER = 288,
|
||||
SONGWRITER = 289,
|
||||
COMPOSER = 290,
|
||||
ARRANGER = 291,
|
||||
MESSAGE = 292,
|
||||
DISC_ID = 293,
|
||||
GENRE = 294,
|
||||
TOC_INFO1 = 295,
|
||||
TOC_INFO2 = 296,
|
||||
UPC_EAN = 297,
|
||||
ISRC = 298,
|
||||
SIZE_INFO = 299,
|
||||
DATE = 300,
|
||||
XXX_GENRE = 301,
|
||||
REPLAYGAIN_ALBUM_GAIN = 302,
|
||||
REPLAYGAIN_ALBUM_PEAK = 303,
|
||||
REPLAYGAIN_TRACK_GAIN = 304,
|
||||
REPLAYGAIN_TRACK_PEAK = 305
|
||||
};
|
||||
#endif
|
||||
|
||||
/* Value type. */
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
|
||||
union YYSTYPE
|
||||
{
|
||||
#line 57 "cue_parser.y" /* yacc.c:1921 */
|
||||
|
||||
long ival;
|
||||
char *sval;
|
||||
|
||||
#line 114 "cue_parser.h" /* yacc.c:1921 */
|
||||
};
|
||||
|
||||
typedef union YYSTYPE YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
#endif
|
||||
|
||||
|
||||
extern YYSTYPE yylval;
|
||||
|
||||
int yyparse (void);
|
||||
|
||||
#endif /* !YY_YY_CUE_PARSER_H_INCLUDED */
|
Reference in New Issue
Block a user