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:
diego 2010-02-20 20:09:06 +00:00
parent b9ac9f87f7
commit 4a2e468d4b
2 changed files with 6 additions and 3 deletions

View File

@ -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 */

View File

@ -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"