diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-12-11 18:20:13 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-12-11 18:20:13 +0000 |
commit | cee0667970121ce1e4a171ee8458758ad0cc07d7 (patch) | |
tree | bdaf837d9368f5f47d9aa223f96139d26a49ba5e /libexslt/exslt.h | |
parent | 162c34f4145dd86421665054329b8e5347075d77 (diff) | |
download | libxslt-cee0667970121ce1e4a171ee8458758ad0cc07d7.tar.gz libxslt-cee0667970121ce1e4a171ee8458758ad0cc07d7.tar.bz2 libxslt-cee0667970121ce1e4a171ee8458758ad0cc07d7.zip |
added the generation of libexslt-api.xml small cleanup. Daniel
* doc/Makefile.am doc/apibuild.py doc/libexslt-api.xml: added
the generation of libexslt-api.xml
* libexslt/exslt.h: small cleanup.
Daniel
Diffstat (limited to 'libexslt/exslt.h')
-rw-r--r-- | libexslt/exslt.h | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/libexslt/exslt.h b/libexslt/exslt.h index c53d8ff1..f8612358 100644 --- a/libexslt/exslt.h +++ b/libexslt/exslt.h @@ -14,15 +14,56 @@ LIBEXSLT_PUBLIC extern const int exsltLibexsltVersion; LIBEXSLT_PUBLIC extern const int exsltLibxsltVersion; LIBEXSLT_PUBLIC extern const int exsltLibxmlVersion; +/** + * EXSLT_COMMON_NAMESPACE: + * + * Namespace for EXSLT common functions + */ #define EXSLT_COMMON_NAMESPACE ((const xmlChar *) "http://exslt.org/common") +/** + * EXSLT_MATH_NAMESPACE: + * + * Namespace for EXSLT math functions + */ #define EXSLT_MATH_NAMESPACE ((const xmlChar *) "http://exslt.org/math") +/** + * EXSLT_SETS_NAMESPACE: + * + * Namespace for EXSLT set functions + */ #define EXSLT_SETS_NAMESPACE ((const xmlChar *) "http://exslt.org/sets") +/** + * EXSLT_FUNCTIONS_NAMESPACE: + * + * Namespace for EXSLT functions extension functions + */ #define EXSLT_FUNCTIONS_NAMESPACE ((const xmlChar *) "http://exslt.org/functions") +/** + * EXSLT_STRINGS_NAMESPACE: + * + * Namespace for EXSLT strings functions + */ #define EXSLT_STRINGS_NAMESPACE ((const xmlChar *) "http://exslt.org/strings") +/** + * EXSLT_DATE_NAMESPACE: + * + * Namespace for EXSLT date functions + */ #define EXSLT_DATE_NAMESPACE ((const xmlChar *) "http://exslt.org/dates-and-times") -#define SAXON_NAMESPACE ((const xmlChar *) "http://icl.com/saxon") +/** + * EXSLT_DYNAMIC_NAMESPACE: + * + * Namespace for EXSLT dynamic functions + */ #define EXSLT_DYNAMIC_NAMESPACE ((const xmlChar *) "http://exslt.org/dynamic") +/** + * SAXON_NAMESPACE: + * + * Namespace for SAXON extensions functions + */ +#define SAXON_NAMESPACE ((const xmlChar *) "http://icl.com/saxon") + void LIBEXSLT_PUBLIC exsltCommonRegister (void); void LIBEXSLT_PUBLIC exsltMathRegister (void); void LIBEXSLT_PUBLIC exsltSetsRegister (void); |