mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2026-01-26 21:41:34 +03:00
catalog: Deprecate low-level internal functions
This commit is contained in:
@@ -70,42 +70,55 @@ typedef xmlCatalog *xmlCatalogPtr;
|
||||
/*
|
||||
* Operations on a given catalog.
|
||||
*/
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlCatalog *
|
||||
xmlNewCatalog (int sgml);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlCatalog *
|
||||
xmlLoadACatalog (const char *filename);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlCatalog *
|
||||
xmlLoadSGMLSuperCatalog (const char *filename);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN int
|
||||
xmlConvertSGMLCatalog (xmlCatalog *catal);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN int
|
||||
xmlACatalogAdd (xmlCatalog *catal,
|
||||
const xmlChar *type,
|
||||
const xmlChar *orig,
|
||||
const xmlChar *replace);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN int
|
||||
xmlACatalogRemove (xmlCatalog *catal,
|
||||
const xmlChar *value);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlChar *
|
||||
xmlACatalogResolve (xmlCatalog *catal,
|
||||
const xmlChar *pubID,
|
||||
const xmlChar *sysID);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlChar *
|
||||
xmlACatalogResolveSystem(xmlCatalog *catal,
|
||||
const xmlChar *sysID);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlChar *
|
||||
xmlACatalogResolvePublic(xmlCatalog *catal,
|
||||
const xmlChar *pubID);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlChar *
|
||||
xmlACatalogResolveURI (xmlCatalog *catal,
|
||||
const xmlChar *URI);
|
||||
#ifdef LIBXML_OUTPUT_ENABLED
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN void
|
||||
xmlACatalogDump (xmlCatalog *catal,
|
||||
FILE *out);
|
||||
#endif /* LIBXML_OUTPUT_ENABLED */
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN void
|
||||
xmlFreeCatalog (xmlCatalog *catal);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN int
|
||||
xmlCatalogIsEmpty (xmlCatalog *catal);
|
||||
|
||||
@@ -142,6 +155,7 @@ XMLPUBFUN int
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN xmlDoc *
|
||||
xmlParseCatalogFile (const char *filename);
|
||||
XML_DEPRECATED
|
||||
XMLPUBFUN int
|
||||
xmlCatalogConvert (void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user