mirror of https://github.com/mpv-player/mpv
Add asx_parser_build_tree() to asxparser.h instead of forward declaring it.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30674 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b9ac9f87f7
commit
4a2e468d4b
|
@ -19,6 +19,8 @@
|
|||
#ifndef MPLAYER_ASXPARSER_H
|
||||
#define MPLAYER_ASXPARSER_H
|
||||
|
||||
#include "playtree.h"
|
||||
|
||||
typedef struct ASX_Parser_t ASX_Parser_t;
|
||||
|
||||
typedef struct {
|
||||
|
@ -67,4 +69,7 @@ typedef void (*ASX_FreeFunc)(void* arg);
|
|||
void
|
||||
asx_list_free(void* list_ptr,ASX_FreeFunc free_func);
|
||||
|
||||
play_tree_t*
|
||||
asx_parser_build_tree(char* buffer,int deep);
|
||||
|
||||
#endif /* MPLAYER_ASXPARSER_H */
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include <ctype.h>
|
||||
#include "asxparser.h"
|
||||
#include "m_config.h"
|
||||
#include "playtree.h"
|
||||
#include "playtreeparser.h"
|
||||
|
@ -38,9 +39,6 @@
|
|||
#include "mp_msg.h"
|
||||
|
||||
|
||||
extern play_tree_t*
|
||||
asx_parser_build_tree(char* buffer, int ref);
|
||||
|
||||
#define BUF_STEP 1024
|
||||
|
||||
#define WHITES " \n\r\t"
|
||||
|
|
Loading…
Reference in New Issue