mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-26 23:25:56 -05:00
23 lines
478 B
C
23 lines
478 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _XMLRPC_H_
|
|
#define _XMLRPC_H_
|
|
|
|
#include "webserver.h"
|
|
|
|
extern void xml_handle(WS_CONNINFO *pwsc);
|
|
|
|
struct tag_xmlstruct;
|
|
typedef struct tag_xmlstruct XMLSTRUCT;
|
|
|
|
extern XMLSTRUCT *xml_init(WS_CONNINFO *pwsc, int emit_header);
|
|
extern void xml_push(XMLSTRUCT *pxml, char *term);
|
|
extern void xml_pop(XMLSTRUCT *pxml);
|
|
extern void xml_output(XMLSTRUCT *pxml, char *section, char *fmt, ...);
|
|
extern void xml_deinit(XMLSTRUCT *pxml);
|
|
|
|
|
|
#endif /* _XMLRPC_H_ */
|