Diff for /Amaya/amaya/trans.h between versions 1.5 and 1.6

version 1.5, 1997/07/29 09:21:38 version 1.6, 1997/09/05 13:34:08
Line 161  typedef struct _TransDesc Line 161  typedef struct _TransDesc
   }    }
 strTransDesc;  strTransDesc;
   
   typedef struct _TransSet
   {
     /* name of the transformation set (eg, name of file without suffix .trans) */
     char                TransFileName [20];
     time_t              timeLastWrite;
     /* number of transformations */
     int                 NbTrans;
     /* patterns max depth */
     int                 MaxDepth;
     /* transformation descriptor list */
     strTransDesc       *Transformations;
     /* next set */
     struct _TransSet   *Next;
   }
   strTransSet;
   
 /* transformation environement */  /* transformation environement */
 struct _strMatchEnv  struct _strMatchEnv
   {  {
 #ifndef PPSTANDALONE  #ifndef PPSTANDALONE
      StructureTree       SourceTree;    StructureTree       SourceTree;
      strListElem        *ListSubTrees;    strListElem        *ListSubTrees;
 #endif  #endif
      /* number of transformations */    strTransSet        *TransSets; 
      int                 NbTrans;  }
      /* patterns max depth*/  
      int                 MaxDepth;  
      strTransDesc       *Transformations;  
   }  
 strMatchEnv;  strMatchEnv;
   
   
   
   
 #ifndef PPSTANDALONE  #ifndef PPSTANDALONE
 /* document to wich a transformation is to be applied */  /* document to wich a transformation is to be applied */
 Document            TransDoc;  Document            TransDoc;
Line 191  int                 TRANSDIAL; Line 204  int                 TRANSDIAL;
 #define TransMenu 1  #define TransMenu 1
 #define MAX_TRANS_DLG 2  #define MAX_TRANS_DLG 2
   
 /*last modification date of transformation resource file */  
 time_t              timeLastWrite;  
   
 #endif  #endif
 #endif /* _TRANS_H__ */  #endif /* _TRANS_H__ */

Removed from v.1.5  
changed lines
  Added in v.1.6


Webmaster