mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-23 01:52:48 +03:00
doc: Fix varargs
This commit is contained in:
@@ -92,10 +92,9 @@ typedef xmlSchema *xmlSchemaPtr;
|
||||
/**
|
||||
* Signature of an error callback from an XSD validation
|
||||
*
|
||||
* @...: extra arguments
|
||||
*
|
||||
* @param ctx the validation context
|
||||
* @param msg the message
|
||||
* @param ... extra arguments
|
||||
*/
|
||||
typedef void (*xmlSchemaValidityErrorFunc)
|
||||
(void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
|
||||
@@ -103,10 +102,9 @@ typedef void (*xmlSchemaValidityErrorFunc)
|
||||
/**
|
||||
* Signature of a warning callback from an XSD validation
|
||||
*
|
||||
* @...: extra arguments
|
||||
*
|
||||
* @param ctx the validation context
|
||||
* @param msg the message
|
||||
* @param ... extra arguments
|
||||
*/
|
||||
typedef void (*xmlSchemaValidityWarningFunc)
|
||||
(void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
|
||||
|
Reference in New Issue
Block a user