forked from mirrors/linphone-iphone
52 lines
1.9 KiB
C
52 lines
1.9 KiB
C
/*
|
|
linphone
|
|
Copyright (C) 2012 Belledonne Communications SARL
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef XML2LPC_H_
|
|
#define XML2LPC_H_
|
|
|
|
#include "linphone/lpconfig.h"
|
|
|
|
typedef struct _xml2lpc_context xml2lpc_context;
|
|
|
|
typedef enum _xml2lpc_log_level {
|
|
XML2LPC_DEBUG = 0,
|
|
XML2LPC_MESSAGE,
|
|
XML2LPC_WARNING,
|
|
XML2LPC_ERROR
|
|
} xml2lpc_log_level;
|
|
|
|
typedef void(*xml2lpc_function)(void *ctx, xml2lpc_log_level level, const char *fmt, va_list list);
|
|
|
|
LINPHONE_PUBLIC xml2lpc_context* xml2lpc_context_new(xml2lpc_function cbf, void *ctx);
|
|
LINPHONE_PUBLIC void xml2lpc_context_destroy(xml2lpc_context*);
|
|
|
|
LINPHONE_PUBLIC int xml2lpc_set_xml_file(xml2lpc_context* context, const char *filename);
|
|
LINPHONE_PUBLIC int xml2lpc_set_xml_fd(xml2lpc_context* context, int fd);
|
|
LINPHONE_PUBLIC int xml2lpc_set_xml_string(xml2lpc_context* context, const char *content);
|
|
|
|
LINPHONE_PUBLIC int xml2lpc_set_xsd_file(xml2lpc_context* context, const char *filename);
|
|
LINPHONE_PUBLIC int xml2lpc_set_xsd_fd(xml2lpc_context* context, int fd);
|
|
LINPHONE_PUBLIC int xml2lpc_set_xsd_string(xml2lpc_context* context, const char *content);
|
|
|
|
LINPHONE_PUBLIC int xml2lpc_validate(xml2lpc_context *context);
|
|
LINPHONE_PUBLIC int xml2lpc_convert(xml2lpc_context *context, LpConfig *lpc);
|
|
|
|
|
|
|
|
#endif //XML2LPC_H_
|