Initial revision

CVS patchset: 104
CVS date: 1995/12/27 19:50:38
This commit is contained in:
ewt 1995-12-27 19:50:38 +00:00
parent 29d08eac07
commit a49f40af8c
1 changed files with 21 additions and 0 deletions

21
lib/rpmlead.h Normal file
View File

@ -0,0 +1,21 @@
#ifndef _H_RPMLEAD
#define _H_RPMLEAD
#define RPMLEAD_BINARY 0
#define RPMLEAD_SOURCE 1
#define RPMLEAD_MAGIC0 0xed
#define RPMLEAD_MAGIC1 0xab
#define RPMLEAD_MAGIC2 0xee
#define RPMLEAD_MAGIC3 0xdb
struct rpmlead {
char magic[4];
char major, minor;
short type;
short archnum;
char name[66];
short osnum;
} ;
#endif