| Index: third_party/libxml/src/include/libxml/catalog.h
|
| diff --git a/third_party/libxml/src/include/libxml/catalog.h b/third_party/libxml/src/include/libxml/catalog.h
|
| index b4441370fcf79524eccc83881c282500bce982f3..5a13f51b6c618944cad442833b895fb41fa869ee 100644
|
| --- a/third_party/libxml/src/include/libxml/catalog.h
|
| +++ b/third_party/libxml/src/include/libxml/catalog.h
|
| @@ -68,111 +68,111 @@ typedef xmlCatalog *xmlCatalogPtr;
|
| */
|
| XMLPUBFUN xmlCatalogPtr XMLCALL
|
| xmlNewCatalog (int sgml);
|
| -XMLPUBFUN xmlCatalogPtr XMLCALL
|
| +XMLPUBFUN xmlCatalogPtr XMLCALL
|
| xmlLoadACatalog (const char *filename);
|
| -XMLPUBFUN xmlCatalogPtr XMLCALL
|
| +XMLPUBFUN xmlCatalogPtr XMLCALL
|
| xmlLoadSGMLSuperCatalog (const char *filename);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlConvertSGMLCatalog (xmlCatalogPtr catal);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlACatalogAdd (xmlCatalogPtr catal,
|
| const xmlChar *type,
|
| const xmlChar *orig,
|
| const xmlChar *replace);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlACatalogRemove (xmlCatalogPtr catal,
|
| const xmlChar *value);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlACatalogResolve (xmlCatalogPtr catal,
|
| const xmlChar *pubID,
|
| const xmlChar *sysID);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlACatalogResolveSystem(xmlCatalogPtr catal,
|
| const xmlChar *sysID);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlACatalogResolvePublic(xmlCatalogPtr catal,
|
| const xmlChar *pubID);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlACatalogResolveURI (xmlCatalogPtr catal,
|
| const xmlChar *URI);
|
| #ifdef LIBXML_OUTPUT_ENABLED
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlACatalogDump (xmlCatalogPtr catal,
|
| FILE *out);
|
| #endif /* LIBXML_OUTPUT_ENABLED */
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlFreeCatalog (xmlCatalogPtr catal);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlCatalogIsEmpty (xmlCatalogPtr catal);
|
|
|
| /*
|
| * Global operations.
|
| */
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlInitializeCatalog (void);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlLoadCatalog (const char *filename);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlLoadCatalogs (const char *paths);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlCatalogCleanup (void);
|
| #ifdef LIBXML_OUTPUT_ENABLED
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlCatalogDump (FILE *out);
|
| #endif /* LIBXML_OUTPUT_ENABLED */
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlCatalogResolve (const xmlChar *pubID,
|
| const xmlChar *sysID);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlCatalogResolveSystem (const xmlChar *sysID);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlCatalogResolvePublic (const xmlChar *pubID);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlCatalogResolveURI (const xmlChar *URI);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlCatalogAdd (const xmlChar *type,
|
| const xmlChar *orig,
|
| const xmlChar *replace);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlCatalogRemove (const xmlChar *value);
|
| -XMLPUBFUN xmlDocPtr XMLCALL
|
| +XMLPUBFUN xmlDocPtr XMLCALL
|
| xmlParseCatalogFile (const char *filename);
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlCatalogConvert (void);
|
|
|
| /*
|
| * Strictly minimal interfaces for per-document catalogs used
|
| * by the parser.
|
| */
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlCatalogFreeLocal (void *catalogs);
|
| -XMLPUBFUN void * XMLCALL
|
| +XMLPUBFUN void * XMLCALL
|
| xmlCatalogAddLocal (void *catalogs,
|
| const xmlChar *URL);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlCatalogLocalResolve (void *catalogs,
|
| const xmlChar *pubID,
|
| const xmlChar *sysID);
|
| -XMLPUBFUN xmlChar * XMLCALL
|
| +XMLPUBFUN xmlChar * XMLCALL
|
| xmlCatalogLocalResolveURI(void *catalogs,
|
| const xmlChar *URI);
|
| /*
|
| * Preference settings.
|
| */
|
| -XMLPUBFUN int XMLCALL
|
| +XMLPUBFUN int XMLCALL
|
| xmlCatalogSetDebug (int level);
|
| -XMLPUBFUN xmlCatalogPrefer XMLCALL
|
| +XMLPUBFUN xmlCatalogPrefer XMLCALL
|
| xmlCatalogSetDefaultPrefer(xmlCatalogPrefer prefer);
|
| -XMLPUBFUN void XMLCALL
|
| +XMLPUBFUN void XMLCALL
|
| xmlCatalogSetDefaults (xmlCatalogAllow allow);
|
| -XMLPUBFUN xmlCatalogAllow XMLCALL
|
| +XMLPUBFUN xmlCatalogAllow XMLCALL
|
| xmlCatalogGetDefaults (void);
|
|
|
|
|
| /* DEPRECATED interfaces */
|
| -XMLPUBFUN const xmlChar * XMLCALL
|
| +XMLPUBFUN const xmlChar * XMLCALL
|
| xmlCatalogGetSystem (const xmlChar *sysID);
|
| -XMLPUBFUN const xmlChar * XMLCALL
|
| +XMLPUBFUN const xmlChar * XMLCALL
|
| xmlCatalogGetPublic (const xmlChar *pubID);
|
|
|
| #ifdef __cplusplus
|
|
|