summaryrefslogtreecommitdiffstats
path: root/src/fiasco.h
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2012-08-09 19:50:14 +0200
committerPali Rohár <pali.rohar@gmail.com>2012-08-09 19:50:14 +0200
commitb2883167d5db98d279687ea009950569568316a3 (patch)
tree5c823503ac6ac382a4515b5b51243b6653607a4d /src/fiasco.h
parent1b99ad115af567e386432fb73b51eb490aba6a55 (diff)
download0xFFFF-b2883167d5db98d279687ea009950569568316a3.tar.bz2
Rename new fiasco2 to fiasco
Diffstat (limited to 'src/fiasco.h')
-rw-r--r--src/fiasco.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/fiasco.h b/src/fiasco.h
new file mode 100644
index 0000000..43c7954
--- /dev/null
+++ b/src/fiasco.h
@@ -0,0 +1,42 @@
+/*
+ 0xFFFF - Open Free Fiasco Firmware Flasher
+ Copyright (C) 2007-2011 pancake <pancake@youterm.com>
+ Copyright (C) 2011-2012 Pali Rohár <pali.rohar@gmail.com>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#ifndef FIASCO_H
+#define FIASCO_H
+
+#include "image.h"
+
+struct fiasco {
+ char name[257];
+ char swver[257];
+ int fd;
+ char * orig_filename;
+ struct image_list * first;
+};
+
+struct fiasco * fiasco_alloc_empty(void);
+struct fiasco * fiasco_alloc_from_file(const char * file);
+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