view playtreeparser.h @ 6297:b659e476559e

Some more "teamwork", changed references to -users into links, clarified some entries and removed an entry saying that the DVD FAQs are in cd-dvd.html. 10l for not spotting that last one while moving the DVD-FAQs from cd-dvd.html.
author diego
date Tue, 04 Jun 2002 07:42:50 +0000
parents 4b728967bd77
children 487cfc28525d
line wrap: on
line source


#ifndef __PLAYTREEPARSER_H
#define __PLAYTREEPARSER_H

#include "playtree.h"
#include "libmpdemux/stream.h"

typedef struct play_tree_parser {
  stream_t* stream;
  char *buffer,*iter,*line;
  int buffer_size , buffer_end;
  int deep,keep;
} play_tree_parser_t;


play_tree_parser_t*
play_tree_parser_new(stream_t* stream,int deep);

void
play_tree_parser_free(play_tree_parser_t* p);

play_tree_t*
play_tree_parser_get_play_tree(play_tree_parser_t* p);

#endif