Path: blob/master/venv/Lib/site-packages/lxml/includes/libexslt/exsltconfig.h
811 views
/*1* exsltconfig.h: compile-time version informations for the EXSLT library2*3* See Copyright for the status of this software.4*5* [email protected]6*/78#ifndef __XML_EXSLTCONFIG_H__9#define __XML_EXSLTCONFIG_H__1011#ifdef __cplusplus12extern "C" {13#endif1415/**16* LIBEXSLT_DOTTED_VERSION:17*18* the version string like "1.2.3"19*/20#define LIBEXSLT_DOTTED_VERSION "0.8.18"2122/**23* LIBEXSLT_VERSION:24*25* the version number: 1.2.3 value is 1020326*/27#define LIBEXSLT_VERSION 8182829/**30* LIBEXSLT_VERSION_STRING:31*32* the version number string, 1.2.3 value is "10203"33*/34#define LIBEXSLT_VERSION_STRING "818"3536/**37* LIBEXSLT_VERSION_EXTRA:38*39* extra version information, used to show a CVS compilation40*/41#define LIBEXSLT_VERSION_EXTRA ""4243/**44* WITH_CRYPTO:45*46* Whether crypto support is configured into exslt47*/48#if 149#define EXSLT_CRYPTO_ENABLED50#endif5152/**53* ATTRIBUTE_UNUSED:54*55* This macro is used to flag unused function parameters to GCC56*/57#ifdef __GNUC__58#ifdef HAVE_ANSIDECL_H59#include <ansidecl.h>60#endif61#ifndef ATTRIBUTE_UNUSED62#define ATTRIBUTE_UNUSED __attribute__((unused))63#endif64#else65#define ATTRIBUTE_UNUSED66#endif6768#ifdef __cplusplus69}70#endif7172#endif /* __XML_EXSLTCONFIG_H__ */737475