From 596ca0f10dd7e928b5f306ba976072b3fca1b360 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 19 Jun 2003 03:39:23 +0000 Subject: [PATCH] Drop int/real arrays. --- documentation.html | 60 ---------------------------------------------- mxml.h | 22 +++-------------- mxml.xml | 16 ------------- 3 files changed, 3 insertions(+), 95 deletions(-) diff --git a/documentation.html b/documentation.html index f126b6d..0a8facd 100644 --- a/documentation.html +++ b/documentation.html @@ -30,10 +30,8 @@ MXML_ELEMENTXML element with attributes MXML_INTEGERInteger value -MXML_INTEGER_ARRAYInteger array value MXML_OPAQUEOpaque string MXML_REALReal value -MXML_REAL_ARRAYReal array value MXML_TEXTText fragment

Functions

@@ -493,9 +491,7 @@ mxmlWalkPrev(

Structures

@@ -518,24 +514,6 @@ struct mxml_attr_s valueAttribute value


-

mxml_intarray_s

-

An XML integer array value.

-

Definition

-
-struct mxml_intarray_s
-{
-  int num_values;
-  int * values;
-};
-
-

Members

-

- - - - -
NameDescription
num_valuesNumber of values
valuesThe array of values

-

mxml_node_s

Data types...

Definition

@@ -564,24 +542,6 @@ struct mxml_node_s valueNode value


-

mxml_realarray_s

-

An XML real array value.

-

Definition

-
-struct mxml_realarray_s
-{
-  int num_values;
-  double * values;
-};
-
-

Members

-

- - - - -
NameDescription
num_valuesNumber of values
valuesThe array of values

-

mxml_text_s

An XML text value.

Definition

@@ -623,9 +583,7 @@ struct mxml_value_s