2004-01-28 20:02:12 -05:00
|
|
|
/* Icecast
|
|
|
|
*
|
|
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
|
|
* A copy of this license is included with this source.
|
|
|
|
*
|
|
|
|
* Copyright 2000-2004, Jack Moffitt <jack@xiph.org,
|
|
|
|
* Michael Smith <msmith@xiph.org>,
|
|
|
|
* oddsock <oddsock@xiph.org>,
|
|
|
|
* Karl Heyes <karl@xiph.org>
|
|
|
|
* and others (see AUTHORS for details).
|
2018-11-26 02:42:05 -05:00
|
|
|
* Copyright 2018, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
|
2004-01-28 20:02:12 -05:00
|
|
|
*/
|
|
|
|
|
2002-08-09 04:16:51 -04:00
|
|
|
#include <libxml/xmlmemory.h>
|
2018-06-17 08:28:38 -04:00
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/tree.h>
|
2002-08-09 04:16:51 -04:00
|
|
|
|
2018-06-17 08:28:38 -04:00
|
|
|
#include "icecasttypes.h"
|
2002-08-09 04:16:51 -04:00
|
|
|
|
2020-10-01 13:34:31 -04:00
|
|
|
void xslt_transform(xmlDocPtr doc, const char *xslfilename, client_t *client, int status, const char *location, const char **params);
|
2005-12-17 07:23:09 -05:00
|
|
|
void xslt_initialize(void);
|
|
|
|
void xslt_shutdown(void);
|
2018-07-06 17:40:37 -04:00
|
|
|
void xslt_clear_cache(void);
|
2002-08-09 04:16:51 -04:00
|
|
|
|