Sha256: 6afaa3ffe1e74ee6c501267b0c7933ae11c674b285bd1df4a2e0abefbee85918
Contents?: true
Size: 1.57 KB
Versions: 2
Compression:
Stored size: 1.57 KB
Contents
/** * XML Security Library (http://www.aleksey.com/xmlsec). * * XML Parser transform and utility functions. * * This is free software; see Copyright file in the source * distribution for preciese wording. * * Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com> */ #ifndef __XMLSEC_PARSER_H__ #define __XMLSEC_PARSER_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #include <libxml/tree.h> #include <xmlsec/xmlsec.h> #include <xmlsec/transforms.h> XMLSEC_EXPORT xmlDocPtr xmlSecParseFile (const char *filename); XMLSEC_EXPORT xmlDocPtr xmlSecParseMemory (const xmlSecByte *buffer, xmlSecSize size, int recovery); XMLSEC_EXPORT xmlDocPtr xmlSecParseMemoryExt (const xmlSecByte *prefix, xmlSecSize prefixSize, const xmlSecByte *buffer, xmlSecSize bufferSize, const xmlSecByte *postfix, xmlSecSize postfixSize); /** * xmlSecTransformXmlParserId: * * The XML Parser transform klass. */ #define xmlSecTransformXmlParserId \ xmlSecTransformXmlParserGetKlass() XMLSEC_EXPORT xmlSecTransformId xmlSecTransformXmlParserGetKlass (void); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __XMLSEC_PARSER_H__ */
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
xmlsec-shim-1.2.18.2 | vendor/xmlsec1-1.2.18/include/xmlsec/parser.h |
xmlsec-shim-1.2.18.1 | vendor/xmlsec1-1.2.18/include/xmlsec/parser.h |