Diff for /embedaddon/libxml2/include/libxml/catalog.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:37:58 version 1.1.1.2, 2014/06/15 19:53:38
Line 68  typedef xmlCatalog *xmlCatalogPtr; Line 68  typedef xmlCatalog *xmlCatalogPtr;
  */   */
 XMLPUBFUN xmlCatalogPtr XMLCALL  XMLPUBFUN xmlCatalogPtr XMLCALL
                 xmlNewCatalog           (int sgml);                  xmlNewCatalog           (int sgml);
XMLPUBFUN xmlCatalogPtr XMLCALL XMLPUBFUN xmlCatalogPtr XMLCALL
                 xmlLoadACatalog         (const char *filename);                  xmlLoadACatalog         (const char *filename);
XMLPUBFUN xmlCatalogPtr XMLCALL XMLPUBFUN xmlCatalogPtr XMLCALL
                 xmlLoadSGMLSuperCatalog (const char *filename);                  xmlLoadSGMLSuperCatalog (const char *filename);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlConvertSGMLCatalog   (xmlCatalogPtr catal);                  xmlConvertSGMLCatalog   (xmlCatalogPtr catal);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlACatalogAdd          (xmlCatalogPtr catal,                  xmlACatalogAdd          (xmlCatalogPtr catal,
                                          const xmlChar *type,                                           const xmlChar *type,
                                          const xmlChar *orig,                                           const xmlChar *orig,
                                          const xmlChar *replace);                                           const xmlChar *replace);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlACatalogRemove       (xmlCatalogPtr catal,                  xmlACatalogRemove       (xmlCatalogPtr catal,
                                          const xmlChar *value);                                           const xmlChar *value);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlACatalogResolve      (xmlCatalogPtr catal,                  xmlACatalogResolve      (xmlCatalogPtr catal,
                                          const xmlChar *pubID,                                           const xmlChar *pubID,
                                          const xmlChar *sysID);                                           const xmlChar *sysID);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlACatalogResolveSystem(xmlCatalogPtr catal,                  xmlACatalogResolveSystem(xmlCatalogPtr catal,
                                          const xmlChar *sysID);                                           const xmlChar *sysID);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlACatalogResolvePublic(xmlCatalogPtr catal,                  xmlACatalogResolvePublic(xmlCatalogPtr catal,
                                          const xmlChar *pubID);                                           const xmlChar *pubID);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlACatalogResolveURI   (xmlCatalogPtr catal,                  xmlACatalogResolveURI   (xmlCatalogPtr catal,
                                          const xmlChar *URI);                                           const xmlChar *URI);
 #ifdef LIBXML_OUTPUT_ENABLED  #ifdef LIBXML_OUTPUT_ENABLED
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlACatalogDump         (xmlCatalogPtr catal,                  xmlACatalogDump         (xmlCatalogPtr catal,
                                          FILE *out);                                           FILE *out);
 #endif /* LIBXML_OUTPUT_ENABLED */  #endif /* LIBXML_OUTPUT_ENABLED */
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlFreeCatalog          (xmlCatalogPtr catal);                  xmlFreeCatalog          (xmlCatalogPtr catal);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlCatalogIsEmpty       (xmlCatalogPtr catal);                  xmlCatalogIsEmpty       (xmlCatalogPtr catal);
   
 /*  /*
  * Global operations.   * Global operations.
  */   */
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlInitializeCatalog    (void);                  xmlInitializeCatalog    (void);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlLoadCatalog          (const char *filename);                  xmlLoadCatalog          (const char *filename);
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlLoadCatalogs         (const char *paths);                  xmlLoadCatalogs         (const char *paths);
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlCatalogCleanup       (void);                  xmlCatalogCleanup       (void);
 #ifdef LIBXML_OUTPUT_ENABLED  #ifdef LIBXML_OUTPUT_ENABLED
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlCatalogDump          (FILE *out);                  xmlCatalogDump          (FILE *out);
 #endif /* LIBXML_OUTPUT_ENABLED */  #endif /* LIBXML_OUTPUT_ENABLED */
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlCatalogResolve       (const xmlChar *pubID,                  xmlCatalogResolve       (const xmlChar *pubID,
                                          const xmlChar *sysID);                                           const xmlChar *sysID);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlCatalogResolveSystem (const xmlChar *sysID);                  xmlCatalogResolveSystem (const xmlChar *sysID);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlCatalogResolvePublic (const xmlChar *pubID);                  xmlCatalogResolvePublic (const xmlChar *pubID);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlCatalogResolveURI    (const xmlChar *URI);                  xmlCatalogResolveURI    (const xmlChar *URI);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlCatalogAdd           (const xmlChar *type,                  xmlCatalogAdd           (const xmlChar *type,
                                          const xmlChar *orig,                                           const xmlChar *orig,
                                          const xmlChar *replace);                                           const xmlChar *replace);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlCatalogRemove        (const xmlChar *value);                  xmlCatalogRemove        (const xmlChar *value);
XMLPUBFUN xmlDocPtr XMLCALL     XMLPUBFUN xmlDocPtr XMLCALL
                 xmlParseCatalogFile     (const char *filename);                  xmlParseCatalogFile     (const char *filename);
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlCatalogConvert       (void);                  xmlCatalogConvert       (void);
   
 /*  /*
  * Strictly minimal interfaces for per-document catalogs used   * Strictly minimal interfaces for per-document catalogs used
  * by the parser.   * by the parser.
  */   */
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlCatalogFreeLocal     (void *catalogs);                  xmlCatalogFreeLocal     (void *catalogs);
XMLPUBFUN void * XMLCALL                XMLPUBFUN void * XMLCALL
                 xmlCatalogAddLocal      (void *catalogs,                  xmlCatalogAddLocal      (void *catalogs,
                                          const xmlChar *URL);                                           const xmlChar *URL);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlCatalogLocalResolve  (void *catalogs,                  xmlCatalogLocalResolve  (void *catalogs,
                                          const xmlChar *pubID,                                           const xmlChar *pubID,
                                          const xmlChar *sysID);                                           const xmlChar *sysID);
XMLPUBFUN xmlChar * XMLCALL     XMLPUBFUN xmlChar * XMLCALL
                 xmlCatalogLocalResolveURI(void *catalogs,                  xmlCatalogLocalResolveURI(void *catalogs,
                                          const xmlChar *URI);                                           const xmlChar *URI);
 /*  /*
  * Preference settings.   * Preference settings.
  */   */
XMLPUBFUN int XMLCALL           XMLPUBFUN int XMLCALL
                 xmlCatalogSetDebug      (int level);                  xmlCatalogSetDebug      (int level);
XMLPUBFUN xmlCatalogPrefer XMLCALL XMLPUBFUN xmlCatalogPrefer XMLCALL
                 xmlCatalogSetDefaultPrefer(xmlCatalogPrefer prefer);                  xmlCatalogSetDefaultPrefer(xmlCatalogPrefer prefer);
XMLPUBFUN void XMLCALL          XMLPUBFUN void XMLCALL
                 xmlCatalogSetDefaults   (xmlCatalogAllow allow);                  xmlCatalogSetDefaults   (xmlCatalogAllow allow);
XMLPUBFUN xmlCatalogAllow XMLCALL       XMLPUBFUN xmlCatalogAllow XMLCALL
                 xmlCatalogGetDefaults   (void);                  xmlCatalogGetDefaults   (void);
   
   
 /* DEPRECATED interfaces */  /* DEPRECATED interfaces */
XMLPUBFUN const xmlChar * XMLCALL       XMLPUBFUN const xmlChar * XMLCALL
                 xmlCatalogGetSystem     (const xmlChar *sysID);                  xmlCatalogGetSystem     (const xmlChar *sysID);
XMLPUBFUN const xmlChar * XMLCALL       XMLPUBFUN const xmlChar * XMLCALL
                 xmlCatalogGetPublic     (const xmlChar *pubID);                  xmlCatalogGetPublic     (const xmlChar *pubID);
   
 #ifdef __cplusplus  #ifdef __cplusplus

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>