summaryrefslogtreecommitdiffstats
path: root/fastboot/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'fastboot/fs.h')
-rw-r--r--fastboot/fs.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/fastboot/fs.h b/fastboot/fs.h
new file mode 100644
index 0000000..8444081
--- /dev/null
+++ b/fastboot/fs.h
@@ -0,0 +1,12 @@
+#ifndef _FS_H_
+#define _FS_H_
+
+#include <stdint.h>
+
+struct fs_generator;
+
+const struct fs_generator* fs_get_generator(const char *fs_type);
+int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
+
+#endif
+