summaryrefslogtreecommitdiffstats
path: root/fastboot/fs.h
blob: 307772b41ec20a838b6cd87d24ac75acc3f711b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _FS_H_
#define _FS_H_

#include <stdint.h>

#if defined(__cplusplus)
extern "C" {
#endif

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);

#if defined(__cplusplus)
}
#endif

#endif