diff options
Diffstat (limited to 'fastjar/jartool.h')
-rw-r--r-- | fastjar/jartool.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fastjar/jartool.h b/fastjar/jartool.h index e0aed6523b4..11f0c889c14 100644 --- a/fastjar/jartool.h +++ b/fastjar/jartool.h @@ -52,6 +52,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef __FASTJAR_JARTOOL_H__ +#define __FASTJAR_JARTOOL_H__ + +#include <sys/types.h> #include "config.h" #define ACTION_NONE 0 @@ -104,9 +108,12 @@ struct zipentry { ub4 usize; ub4 offset; ub1 compressed; + ub2 flags; char *filename; struct zipentry *next_entry; }; typedef struct zipentry zipentry; + +#endif /* __FASTJAR_JARTOOL_H__ */ |