Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
SAX.h
Package: rtsp-1.0.1.tar.gz [view]
Upload User: sy_wanhua
Upload Date: 2013-07-25
Package Size: 3048k
Code Size: 3k
Category:
Streaming_Mpeg4
Development Platform:
C/C++
- /*
- * SAX.h : Default SAX handler interfaces.
- *
- * See Copyright for the status of this software.
- *
- * Daniel Veillard <Daniel.Veillard@w3.org>
- */
- #ifndef __XML_SAX_H__
- #define __XML_SAX_H__
- #include <stdio.h>
- #include <stdlib.h>
- #include <libxml/parser.h>
- #include <libxml/xlink.h>
- #ifdef __cplusplus
- #define extern "C" {
- #endif
- const xmlChar * getPublicId (void *ctx);
- const xmlChar * getSystemId (void *ctx);
- void setDocumentLocator (void *ctx,
- xmlSAXLocatorPtr loc);
- int getLineNumber (void *ctx);
- int getColumnNumber (void *ctx);
- int isStandalone (void *ctx);
- int hasInternalSubset (void *ctx);
- int hasExternalSubset (void *ctx);
- void internalSubset (void *ctx,
- const xmlChar *name,
- const xmlChar *ExternalID,
- const xmlChar *SystemID);
- xmlEntityPtr getEntity (void *ctx,
- const xmlChar *name);
- xmlEntityPtr getParameterEntity (void *ctx,
- const xmlChar *name);
- xmlParserInputPtr resolveEntity (void *ctx,
- const xmlChar *publicId,
- const xmlChar *systemId);
- void entityDecl (void *ctx,
- const xmlChar *name,
- int type,
- const xmlChar *publicId,
- const xmlChar *systemId,
- xmlChar *content);
- void attributeDecl (void *ctx,
- const xmlChar *elem,
- const xmlChar *name,
- int type,
- int def,
- const xmlChar *defaultValue,
- xmlEnumerationPtr tree);
- void elementDecl (void *ctx,
- const xmlChar *name,
- int type,
- xmlElementContentPtr content);
- void notationDecl (void *ctx,
- const xmlChar *name,
- const xmlChar *publicId,
- const xmlChar *systemId);
- void unparsedEntityDecl (void *ctx,
- const xmlChar *name,
- const xmlChar *publicId,
- const xmlChar *systemId,
- const xmlChar *notationName);
- void startDocument (void *ctx);
- void endDocument (void *ctx);
- void attribute (void *ctx,
- const xmlChar *fullname,
- const xmlChar *value);
- void startElement (void *ctx,
- const xmlChar *fullname,
- const xmlChar **atts);
- void endElement (void *ctx,
- const xmlChar *name);
- void reference (void *ctx,
- const xmlChar *name);
- void characters (void *ctx,
- const xmlChar *ch,
- int len);
- void ignorableWhitespace (void *ctx,
- const xmlChar *ch,
- int len);
- void processingInstruction (void *ctx,
- const xmlChar *target,
- const xmlChar *data);
- void globalNamespace (void *ctx,
- const xmlChar *href,
- const xmlChar *prefix);
- void setNamespace (void *ctx,
- const xmlChar *name);
- xmlNsPtr getNamespace (void *ctx);
- int checkNamespace (void *ctx,
- xmlChar *nameSpace);
- void namespaceDecl (void *ctx,
- const xmlChar *href,
- const xmlChar *prefix);
- void comment (void *ctx,
- const xmlChar *value);
- void cdataBlock (void *ctx,
- const xmlChar *value,
- int len);
- void xmlDefaultSAXHandlerInit (void);
- void htmlDefaultSAXHandlerInit (void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __XML_SAX_H__ */