version 1.1, 2012/02/21 23:37:58
|
version 1.1.1.2, 2014/06/15 19:53:38
|
Line 25 extern "C" {
|
Line 25 extern "C" {
|
#endif |
#endif |
XMLPUBFUN const xmlChar * XMLCALL |
XMLPUBFUN const xmlChar * XMLCALL |
getPublicId (void *ctx); |
getPublicId (void *ctx); |
XMLPUBFUN const xmlChar * XMLCALL | XMLPUBFUN const xmlChar * XMLCALL |
getSystemId (void *ctx); |
getSystemId (void *ctx); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
setDocumentLocator (void *ctx, |
setDocumentLocator (void *ctx, |
xmlSAXLocatorPtr loc); |
xmlSAXLocatorPtr loc); |
| |
XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
getLineNumber (void *ctx); |
getLineNumber (void *ctx); |
XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
getColumnNumber (void *ctx); |
getColumnNumber (void *ctx); |
|
|
XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
isStandalone (void *ctx); |
isStandalone (void *ctx); |
XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
hasInternalSubset (void *ctx); |
hasInternalSubset (void *ctx); |
XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
hasExternalSubset (void *ctx); |
hasExternalSubset (void *ctx); |
|
|
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
internalSubset (void *ctx, |
internalSubset (void *ctx, |
const xmlChar *name, |
const xmlChar *name, |
const xmlChar *ExternalID, |
const xmlChar *ExternalID, |
const xmlChar *SystemID); |
const xmlChar *SystemID); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
externalSubset (void *ctx, |
externalSubset (void *ctx, |
const xmlChar *name, |
const xmlChar *name, |
const xmlChar *ExternalID, |
const xmlChar *ExternalID, |
const xmlChar *SystemID); |
const xmlChar *SystemID); |
XMLPUBFUN xmlEntityPtr XMLCALL | XMLPUBFUN xmlEntityPtr XMLCALL |
getEntity (void *ctx, |
getEntity (void *ctx, |
const xmlChar *name); |
const xmlChar *name); |
XMLPUBFUN xmlEntityPtr XMLCALL | XMLPUBFUN xmlEntityPtr XMLCALL |
getParameterEntity (void *ctx, |
getParameterEntity (void *ctx, |
const xmlChar *name); |
const xmlChar *name); |
XMLPUBFUN xmlParserInputPtr XMLCALL | XMLPUBFUN xmlParserInputPtr XMLCALL |
resolveEntity (void *ctx, |
resolveEntity (void *ctx, |
const xmlChar *publicId, |
const xmlChar *publicId, |
const xmlChar *systemId); |
const xmlChar *systemId); |
|
|
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
entityDecl (void *ctx, |
entityDecl (void *ctx, |
const xmlChar *name, |
const xmlChar *name, |
int type, |
int type, |
const xmlChar *publicId, |
const xmlChar *publicId, |
const xmlChar *systemId, |
const xmlChar *systemId, |
xmlChar *content); |
xmlChar *content); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
attributeDecl (void *ctx, |
attributeDecl (void *ctx, |
const xmlChar *elem, |
const xmlChar *elem, |
const xmlChar *fullname, |
const xmlChar *fullname, |
Line 79 XMLPUBFUN void XMLCALL
|
Line 79 XMLPUBFUN void XMLCALL
|
int def, |
int def, |
const xmlChar *defaultValue, |
const xmlChar *defaultValue, |
xmlEnumerationPtr tree); |
xmlEnumerationPtr tree); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
elementDecl (void *ctx, |
elementDecl (void *ctx, |
const xmlChar *name, |
const xmlChar *name, |
int type, |
int type, |
xmlElementContentPtr content); |
xmlElementContentPtr content); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
notationDecl (void *ctx, |
notationDecl (void *ctx, |
const xmlChar *name, |
const xmlChar *name, |
const xmlChar *publicId, |
const xmlChar *publicId, |
const xmlChar *systemId); |
const xmlChar *systemId); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
unparsedEntityDecl (void *ctx, |
unparsedEntityDecl (void *ctx, |
const xmlChar *name, |
const xmlChar *name, |
const xmlChar *publicId, |
const xmlChar *publicId, |
const xmlChar *systemId, |
const xmlChar *systemId, |
const xmlChar *notationName); |
const xmlChar *notationName); |
|
|
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
startDocument (void *ctx); |
startDocument (void *ctx); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
endDocument (void *ctx); |
endDocument (void *ctx); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
attribute (void *ctx, |
attribute (void *ctx, |
const xmlChar *fullname, |
const xmlChar *fullname, |
const xmlChar *value); |
const xmlChar *value); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
startElement (void *ctx, |
startElement (void *ctx, |
const xmlChar *fullname, |
const xmlChar *fullname, |
const xmlChar **atts); |
const xmlChar **atts); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
endElement (void *ctx, |
endElement (void *ctx, |
const xmlChar *name); |
const xmlChar *name); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
reference (void *ctx, |
reference (void *ctx, |
const xmlChar *name); |
const xmlChar *name); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
characters (void *ctx, |
characters (void *ctx, |
const xmlChar *ch, |
const xmlChar *ch, |
int len); |
int len); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
ignorableWhitespace (void *ctx, |
ignorableWhitespace (void *ctx, |
const xmlChar *ch, |
const xmlChar *ch, |
int len); |
int len); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
processingInstruction (void *ctx, |
processingInstruction (void *ctx, |
const xmlChar *target, |
const xmlChar *target, |
const xmlChar *data); |
const xmlChar *data); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
globalNamespace (void *ctx, |
globalNamespace (void *ctx, |
const xmlChar *href, |
const xmlChar *href, |
const xmlChar *prefix); |
const xmlChar *prefix); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
setNamespace (void *ctx, |
setNamespace (void *ctx, |
const xmlChar *name); |
const xmlChar *name); |
XMLPUBFUN xmlNsPtr XMLCALL | XMLPUBFUN xmlNsPtr XMLCALL |
getNamespace (void *ctx); |
getNamespace (void *ctx); |
XMLPUBFUN int XMLCALL | XMLPUBFUN int XMLCALL |
checkNamespace (void *ctx, |
checkNamespace (void *ctx, |
xmlChar *nameSpace); |
xmlChar *nameSpace); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
namespaceDecl (void *ctx, |
namespaceDecl (void *ctx, |
const xmlChar *href, |
const xmlChar *href, |
const xmlChar *prefix); |
const xmlChar *prefix); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
comment (void *ctx, |
comment (void *ctx, |
const xmlChar *value); |
const xmlChar *value); |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
cdataBlock (void *ctx, |
cdataBlock (void *ctx, |
const xmlChar *value, |
const xmlChar *value, |
int len); |
int len); |
|
|
#ifdef LIBXML_SAX1_ENABLED |
#ifdef LIBXML_SAX1_ENABLED |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
initxmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr, |
initxmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr, |
int warning); |
int warning); |
#ifdef LIBXML_HTML_ENABLED |
#ifdef LIBXML_HTML_ENABLED |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
inithtmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); |
inithtmlDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); |
#endif |
#endif |
#ifdef LIBXML_DOCB_ENABLED |
#ifdef LIBXML_DOCB_ENABLED |
XMLPUBFUN void XMLCALL | XMLPUBFUN void XMLCALL |
initdocbDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); |
initdocbDefaultSAXHandler (xmlSAXHandlerV1 *hdlr); |
#endif |
#endif |
#endif /* LIBXML_SAX1_ENABLED */ |
#endif /* LIBXML_SAX1_ENABLED */ |