Home | History | Annotate | Download | only in fastboot
      1 #ifndef _FS_H_
      2 #define _FS_H_
      3 
      4 #include <stdint.h>
      5 
      6 struct fs_generator;
      7 
      8 const struct fs_generator* fs_get_generator(const char *fs_type);
      9 int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
     10 
     11 #endif
     12 
     13