Home | History | Annotate | Download | only in fastboot
      1 #ifndef _FS_H_
      2 #define _FS_H_
      3 
      4 #include <stdint.h>
      5 
      6 #if defined(__cplusplus)
      7 extern "C" {
      8 #endif
      9 
     10 struct fs_generator;
     11 
     12 const struct fs_generator* fs_get_generator(const char *fs_type);
     13 int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
     14 
     15 #if defined(__cplusplus)
     16 }
     17 #endif
     18 
     19 #endif
     20 
     21