2014-03-04 17:18:26 +01:00
* Summary: string dictionary
* Description: dictionary of reusable strings, just used to avoid
* allocation and freeing operations.
*
* Copy: See Copyright for the status of this software.
*
* Author: Patrick Monnerat <pm@datasphere.ch>, DATASPHERE S.A.
/if not defined(XML_DICT_H__)
/define XML_DICT_H__
* The dictionary.
d xmlDictPtr s * based(######typedef######)
2016-05-02 16:21:47 +02:00
/include "libxmlrpg/xmlversion"
/include "libxmlrpg/xmlTypesC"
/include "libxmlrpg/tree"
2014-03-04 17:18:26 +01:00
* Initializer
d xmlInitializeDict...
2015-04-01 18:52:37 +02:00
d pr extproc('xmlInitializeDict')
d like(xmlCint)
2014-03-04 17:18:26 +01:00
* Constructor and destructor.
d xmlDictCreate pr extproc('xmlDictCreate')
d like(xmlDictPtr)
d xmlDictSetLimit...
2015-04-16 16:04:06 +08:00
d pr extproc('xmlDictSetLimit')
d like(xmlCsize_t)
2014-03-04 17:18:26 +01:00
d dict value like(xmlDictPtr)
2015-04-16 16:04:06 +08:00
d limit value like(xmlCsize_t)
2014-03-04 17:18:26 +01:00
d xmlDictGetUsage...
2015-04-16 16:04:06 +08:00
d pr extproc('xmlDictGetUsage')
d like(xmlCsize_t)
2014-03-04 17:18:26 +01:00
d dict value like(xmlDictPtr)
d xmlDictCreateSub...
d pr extproc('xmlDictCreateSub')
d like(xmlDictPtr)
d sub value like(xmlDictPtr)
d xmlDictReference...
2015-04-01 18:52:37 +02:00
d pr extproc('xmlDictGetReference')
d like(xmlCint)
2014-03-04 17:18:26 +01:00
d dict value like(xmlDictPtr)
d xmlDictFree pr extproc('xmlDictFree')
d dict value like(xmlDictPtr)
* Lookup of entry in the dictionary.
d xmlDictLookup pr * extproc('xmlDictLookup') const xmlChar *
d dict value like(xmlDictPtr)
d name * value options(*string) const xmlChar *
2015-04-01 18:52:37 +02:00
d len value like(xmlCint)
2014-03-04 17:18:26 +01:00
d xmlDictExists pr * extproc('xmlDictExists') const xmlChar *
d dict value like(xmlDictPtr)
d name * value options(*string) const xmlChar *
2015-04-01 18:52:37 +02:00
d len value like(xmlCint)
2014-03-04 17:18:26 +01:00
d xmlDictQLookup pr * extproc('xmlDictQLookup') const xmlChar *
d dict value like(xmlDictPtr)
d name * value options(*string) const xmlChar *
d name * value options(*string) const xmlChar *
2015-04-01 18:52:37 +02:00
d xmlDictOwns pr extproc('xmlDictOwns')
d like(xmlCint)
2014-03-04 17:18:26 +01:00
d dict value like(xmlDictPtr)
d str * value options(*string) const xmlChar *
2015-04-01 18:52:37 +02:00
d xmlDictSize pr extproc('xmlDictSize')
d like(xmlCint)
2014-03-04 17:18:26 +01:00
d dict value like(xmlDictPtr)
* Cleanup function
d xmlDictCleanup pr extproc('xmlDictCleanup')
/endif ! XML_DICT_H__