1
0
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:
Nick Wellnhofer
2025-05-06 18:31:45 +02:00
parent 9bbffec568
commit 38ea8fa9de
9 changed files with 31 additions and 61 deletions

View File

@@ -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);