1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

CORBA defines fixes, char encoding atodetection, Daniel

This commit is contained in:
Daniel Veillard
1999-05-29 11:51:49 +00:00
parent 5e60f5a236
commit 27d88744f9
12 changed files with 664 additions and 311 deletions

View File

@ -20,8 +20,9 @@
* extra parameters.
*/
void
xmlParserError(xmlParserCtxtPtr ctxt, const char *msg, ...)
xmlParserError(void *ctx, const char *msg, ...)
{
xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
const CHAR *cur, *base;
va_list args;
int n;
@ -73,8 +74,9 @@ xmlParserError(xmlParserCtxtPtr ctxt, const char *msg, ...)
* extra parameters.
*/
void
xmlParserWarning(xmlParserCtxtPtr ctxt, const char *msg, ...)
xmlParserWarning(void *ctx, const char *msg, ...)
{
xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx;
const CHAR *cur, *base;
va_list args;
int n;