Diff for /rpm2html/rpmdata.h between versions 1.18 and 1.19

version 1.18, 1998/02/08 19:08:39 version 1.19, 1998/02/16 23:13:22
Line 53  typedef struct rpm_arch { Line 53  typedef struct rpm_arch {
  * structure associated with an rpm   * structure associated with an rpm
  */   */
   
 #define MAX_RESS 35  #define MAX_RES 35
 #define MAX_REQU 35  #define MAX_REQU 35
   
 typedef struct rpm_data {  typedef struct rpm_data {
Line 82  typedef struct rpm_data { Line 82  typedef struct rpm_data {
     time_t stamp;               /* modification file of the archive */      time_t stamp;               /* modification file of the archive */
     int_32 size;                /* size of the software */      int_32 size;                /* size of the software */
     char *host;                 /* build host */      char *host;                 /* build host */
     int   nb_ressources;        /* #of ressources provided */      int   nb_resources; /* #of resources provided */
     struct rpm_ressource *      struct rpm_resource *
        ressources[MAX_RESS + 1];/* list of them */         resources[MAX_RES + 1];/* list of them */
     int   nb_requires;          /* #of ressources required */      int   nb_requires;          /* #of resources required */
     struct rpm_ressource *      struct rpm_resource *
           requires[MAX_REQU];   /* list of them */            requires[MAX_REQU];   /* list of them */
     char *filelist;             /* the filelist */      char *filelist;             /* the filelist */
 } rpmData, *rpmDataPtr;  } rpmData, *rpmDataPtr;
Line 97  typedef struct rpm_data { Line 97  typedef struct rpm_data {
   
 #define MAX_PROVIDE 75  #define MAX_PROVIDE 75
   
 typedef struct rpm_ressource {  typedef struct rpm_resource {
     struct rpm_ressource *next; /* next in the list */      struct rpm_resource *next;  /* next in the list */
     char *name;                 /* name of the ressource */      char *name;                 /* name of the resource */
     int   nb_provider;          /* #of ressources provided */      int   nb_provider;          /* #of resources provided */
     time_t stamp;               /* max stamp of the provider */      time_t stamp;               /* max stamp of the provider */
     struct rpm_data *      struct rpm_data *
           provider[MAX_PROVIDE];/* list of them */            provider[MAX_PROVIDE];/* list of them */

Removed from v.1.18  
changed lines
  Added in v.1.19


Webmaster