mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-11-06 23:49:25 +03:00
* libxslt/xsltwin32config.h[.in]: added configuration/version informations for Windows/MSC * libxslt/libxslt.h libxslt/*.c: internal header to centralize includes switches * libxslt/Makefile.am: added libxslt.h and xsltwin32config.h[.in] * libxslt/*.[ch] libxslt/*.in: quite a bit of cleanup, especially the email addresses * AUTHORS: added William Daniel
31 lines
629 B
C
31 lines
629 B
C
/*
|
|
* attributes.h: interface for the XSLT attribute handling
|
|
*
|
|
* See Copyright for the status of this software.
|
|
*
|
|
* daniel@veillard.com
|
|
*/
|
|
|
|
#ifndef __XML_XSLT_ATTRIBUTES_H__
|
|
#define __XML_XSLT_ATTRIBUTES_H__
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void xsltParseStylesheetAttributeSet (xsltStylesheetPtr style,
|
|
xmlNodePtr cur);
|
|
void xsltFreeAttributeSetsHashes (xsltStylesheetPtr style);
|
|
void xsltApplyAttributeSet (xsltTransformContextPtr ctxt,
|
|
xmlNodePtr node,
|
|
xmlNodePtr inst,
|
|
xmlChar *attributes);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __XML_XSLT_ATTRIBUTES_H__ */
|
|
|