2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef MPLAYER_ASXPARSER_H
20 #define MPLAYER_ASXPARSER_H
22 typedef struct ASX_Parser_t ASX_Parser_t
;
30 int line
; // Curent line
31 ASX_LineSave_t
*ret_stack
;
41 asx_parser_free(ASX_Parser_t
* parser
);
44 * Return -1 on error, 0 when nothing is found, 1 on sucess
47 asx_get_element(ASX_Parser_t
* parser
,char** _buffer
,
48 char** _element
,char** _body
,char*** _attribs
);
51 asx_parse_attribs(ASX_Parser_t
* parser
,char* buffer
,char*** _attribs
);
56 asx_get_attrib(const char* attrib
,char** attribs
);
59 asx_attrib_to_enum(const char* val
,char** valid_vals
);
61 #define asx_free_attribs(a) asx_list_free(&a,free)
65 typedef void (*ASX_FreeFunc
)(void* arg
);
68 asx_list_free(void* list_ptr
,ASX_FreeFunc free_func
);
70 #endif /* MPLAYER_ASXPARSER_H */