1 /*
2    2002, 2003, 2004, 2005, 2006, 2007 Bastien Nocera
3    Copyright (C) 2003 Colin Walters <walters@verbum.org>
4 
5    The Gnome Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9 
10    The Gnome Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14 
15    You should have received a copy of the GNU Library General Public
16    License along with the Gnome Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18    Boston, MA 02110-1301  USA.
19 
20    Author: Bastien Nocera <hadess@hadess.net>
21  */
22 
23 #ifndef TOTEM_PL_PARSER_SMIL_H
24 #define TOTEM_PL_PARSER_SMIL_H
25 
26 G_BEGIN_DECLS
27 
28 #ifndef TOTEM_PL_PARSER_MINI
29 #include "totem-pl-parser.h"
30 #include "totem-pl-parser-private.h"
31 #include <gio/gio.h>
32 #else
33 #include "totem-pl-parser-mini.h"
34 #endif /* !TOTEM_PL_PARSER_MINI */
35 
36 #ifndef TOTEM_PL_PARSER_MINI
37 TotemPlParserResult totem_pl_parser_add_smil (TotemPlParser *parser,
38 					      GFile *file,
39 					      GFile *base_file,
40 					      TotemPlParseData *parse_data,
41 					      gpointer data);
42 TotemPlParserResult totem_pl_parser_add_smil_with_data (TotemPlParser *parser,
43 							GFile *file,
44 							GFile *base_file,
45 							const char *contents,
46 							int size);
47 #endif /* !TOTEM_PL_PARSER_MINI */
48 
49 G_END_DECLS
50 
51 #endif /* TOTEM_PL_PARSER_SMIL_H */
52