1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

doc: Document struct typedefs

Unfortunately, Doxygen's TYPDEF_HIDES_STRUCT option is too broken.
Document struct typedefs to make autolinks work.
This commit is contained in:
Nick Wellnhofer
2025-07-04 16:20:28 +02:00
parent 71e1e8af5e
commit c7a9ef1d66
21 changed files with 92 additions and 49 deletions

View File

@@ -137,12 +137,6 @@ struct _xmlParserInput {
/** @cond ignore */
/*
* The parser can be asked to collect Node information, i.e. at what
* place in the file they were detected.
*
* NOTE: This feature is off by default and deprecated.
*/
typedef struct _xmlParserNodeInfo xmlParserNodeInfo;
typedef xmlParserNodeInfo *xmlParserNodeInfoPtr;
@@ -1181,6 +1175,11 @@ struct _xmlSAXHandler {
xmlStructuredErrorFunc serror;
};
/**
* SAX handler, version 1.
*
* @deprecated Use version 2 handlers.
*/
typedef struct _xmlSAXHandlerV1 xmlSAXHandlerV1;
typedef xmlSAXHandlerV1 *xmlSAXHandlerV1Ptr;
/**