// libxml start element callback function
//
-static void startElement(void *voidContext,
+static void StartElement(void *voidContext,
const xmlChar *name,
const xmlChar **attributes)
{
// libxml end element callback function
//
-static void endElement(void *voidContext,
+static void EndElement(void *voidContext,
const xmlChar *name)
{
Context *context = (Context *)voidContext;
// libxml PCDATA callback function
//
-static void characters(void *voidContext,
+static void Characters(void *voidContext,
const xmlChar *chars,
int length)
{
NULL,
NULL,
NULL,
- startElement,
- endElement,
+ StartElement,
+ EndElement,
NULL,
- characters,
+ Characters,
NULL,
NULL,
NULL,