diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-26 18:36:45 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-26 18:36:45 +0000 |
commit | f34c2e508eeaba527009e2b86bf6ef7a09a496bb (patch) | |
tree | 4b89867b872732b1899609f5dea358092ca4891d /plugins/Variables/src/libxslt/numbersInternals.h | |
parent | 895ee7a4623bfa3378c5c5f1dec69893ca87b6b6 (diff) |
plugins cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@6243 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Variables/src/libxslt/numbersInternals.h')
-rw-r--r-- | plugins/Variables/src/libxslt/numbersInternals.h | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/plugins/Variables/src/libxslt/numbersInternals.h b/plugins/Variables/src/libxslt/numbersInternals.h deleted file mode 100644 index 8707789521..0000000000 --- a/plugins/Variables/src/libxslt/numbersInternals.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * numbers.h: Implementation of the XSLT number functions - * - * See Copyright for the status of this software. - * - * daniel@veillard.com - * Bjorn Reese <breese@users.sourceforge.net> - */ - -#ifndef __XML_XSLT_NUMBERSINTERNALS_H__ -#define __XML_XSLT_NUMBERSINTERNALS_H__ - -#include "libxml/tree.h" -#include "xsltexports.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * xsltNumberData: - * - * This data structure is just a wrapper to pass xsl:number data in. - */ -typedef struct _xsltNumberData xsltNumberData; -typedef xsltNumberData *xsltNumberDataPtr; - -struct _xsltNumberData { - xmlChar *level; - xmlChar *count; - xmlChar *from; - xmlChar *value; - xmlChar *format; - int has_format; - int digitsPerGroup; - int groupingCharacter; - int groupingCharacterLen; - xmlDocPtr doc; - xmlNodePtr node; - - /* - * accelerators - */ -}; - -/** - * xsltFormatNumberInfo,: - * - * This data structure lists the various parameters needed to format numbers. - */ -typedef struct _xsltFormatNumberInfo xsltFormatNumberInfo; -typedef xsltFormatNumberInfo *xsltFormatNumberInfoPtr; - -struct _xsltFormatNumberInfo { - int integer_hash; /* Number of '#' in integer part */ - int integer_digits; /* Number of '0' in integer part */ - int frac_digits; /* Number of '0' in fractional part */ - int frac_hash; /* Number of '#' in fractional part */ - int group; /* Number of chars per display 'group' */ - int multiplier; /* Scaling for percent or permille */ - char add_decimal; /* Flag for whether decimal point appears in pattern */ - char is_multiplier_set; /* Flag to catch multiple occurences of percent/permille */ - char is_negative_pattern;/* Flag for processing -ve prefix/suffix */ -}; - -#ifdef __cplusplus -} -#endif -#endif /* __XML_XSLT_NUMBERSINTERNALS_H__ */ |