|
|
| version 1.1.1.1, 2012/02/21 23:37:58 | version 1.1.1.2, 2013/07/22 01:22:22 |
|---|---|
| Line 25 typedef struct _xmlDict xmlDict; | Line 25 typedef struct _xmlDict xmlDict; |
| typedef xmlDict *xmlDictPtr; | typedef xmlDict *xmlDictPtr; |
| /* | /* |
| * Initializer | |
| */ | |
| XMLPUBFUN int XMLCALL xmlInitializeDict(void); | |
| /* | |
| * Constructor and destructor. | * Constructor and destructor. |
| */ | */ |
| XMLPUBFUN xmlDictPtr XMLCALL | XMLPUBFUN xmlDictPtr XMLCALL |
| Line 33 XMLPUBFUN xmlDictPtr XMLCALL | Line 38 XMLPUBFUN xmlDictPtr XMLCALL |
| xmlDictCreateSub(xmlDictPtr sub); | xmlDictCreateSub(xmlDictPtr sub); |
| XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
| xmlDictReference(xmlDictPtr dict); | xmlDictReference(xmlDictPtr dict); |
| XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
| xmlDictFree (xmlDictPtr dict); | xmlDictFree (xmlDictPtr dict); |
| /* | /* |
| * Lookup of entry in the dictionnary. | * Lookup of entry in the dictionnary. |
| */ | */ |
| XMLPUBFUN const xmlChar * XMLCALL | XMLPUBFUN const xmlChar * XMLCALL |
| xmlDictLookup (xmlDictPtr dict, | xmlDictLookup (xmlDictPtr dict, |
| const xmlChar *name, | const xmlChar *name, |
| int len); | int len); |
| XMLPUBFUN const xmlChar * XMLCALL | XMLPUBFUN const xmlChar * XMLCALL |
| xmlDictExists (xmlDictPtr dict, | xmlDictExists (xmlDictPtr dict, |
| const xmlChar *name, | const xmlChar *name, |
| int len); | int len); |
| XMLPUBFUN const xmlChar * XMLCALL | XMLPUBFUN const xmlChar * XMLCALL |
| xmlDictQLookup (xmlDictPtr dict, | xmlDictQLookup (xmlDictPtr dict, |
| const xmlChar *prefix, | const xmlChar *prefix, |
| const xmlChar *name); | const xmlChar *name); |
| XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
| xmlDictOwns (xmlDictPtr dict, | xmlDictOwns (xmlDictPtr dict, |
| const xmlChar *str); | const xmlChar *str); |
| XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
| xmlDictSize (xmlDictPtr dict); | xmlDictSize (xmlDictPtr dict); |
| /* | /* |