123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef OPC_XMLREADER_H
- #define OPC_XMLREADER_H
- #include <opc/config.h>
- #include <libxml/xmlreader.h>
- #include <mce/textreader.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- opc_error_t opcXmlReaderOpen(opcContainer *container, mceTextReader_t *mceTextReader, const xmlChar *partName, const char * URL, const char * encoding, int options);
-
- xmlDocPtr opcXmlReaderReadDoc(opcContainer *container, const xmlChar *partName, const char * URL, const char * encoding, int options);
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|