1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +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

@@ -730,20 +730,18 @@ typedef void (*cdataBlockSAXFunc) (
/**
* Display and format a warning messages, callback.
*
* @...: extra parameters for the message display
*
* @param ctx an XML parser context
* @param msg the message to display/transmit
* @param ... extra parameters for the message display
*/
typedef void (*warningSAXFunc) (void *ctx,
const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
/**
* Display and format an error messages, callback.
*
* @...: extra parameters for the message display
*
* @param ctx an XML parser context
* @param msg the message to display/transmit
* @param ... extra parameters for the message display
*/
typedef void (*errorSAXFunc) (void *ctx,
const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
@@ -752,10 +750,10 @@ typedef void (*errorSAXFunc) (void *ctx,
* Note: so far fatalError() SAX callbacks are not used, error()
* get all the callbacks for errors.
*
* @...: extra parameters for the message display
*
* @param ctx an XML parser context
* @param msg the message to display/transmit
* @param ... extra parameters for the message display
*/
typedef void (*fatalErrorSAXFunc) (void *ctx,
const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);