diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2012-08-09 16:05:44 +0200 |
---|---|---|
committer | Pali Rohár <pali.rohar@gmail.com> | 2012-08-09 16:05:44 +0200 |
commit | 366680af1b1476ac26dcbbe888d89f7012fd0c01 (patch) | |
tree | efc4e0fea9a309bf7372059590d291954d82de70 /src/fiasco2.h | |
parent | 4de49acb4949a9a35fee3b97ee706fed4e3b6e1a (diff) | |
download | 0xFFFF-366680af1b1476ac26dcbbe888d89f7012fd0c01.tar.bz2 |
fiasco: Added function fiasco_print_info, fixed fiasco_free
Diffstat (limited to 'src/fiasco2.h')
-rw-r--r-- | src/fiasco2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fiasco2.h b/src/fiasco2.h index 36c000d..43c7954 100644 --- a/src/fiasco2.h +++ b/src/fiasco2.h @@ -27,6 +27,7 @@ struct fiasco { char name[257]; char swver[257]; int fd; + char * orig_filename; struct image_list * first; }; @@ -36,5 +37,6 @@ void fiasco_free(struct fiasco * fiasco); void fiasco_add_image(struct fiasco * fiasco, struct image * image); int fiasco_write_to_file(struct fiasco * fiasco, const char * file); int fiasco_unpack(struct fiasco * fiasco, const char * dir); +void fiasco_print_info(struct fiasco * fiasco); #endif |