2014-03-12 01:28:15 +00:00
|
|
|
#ifndef _FS_H_
|
2014-07-08 20:41:42 +00:00
|
|
|
#define _FS_H_
|
2014-03-12 01:28:15 +00:00
|
|
|
|
2015-11-27 09:29:37 +00:00
|
|
|
#include <string>
|
2014-03-12 01:28:15 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
struct fs_generator;
|
|
|
|
|
2015-11-02 22:05:57 +00:00
|
|
|
const struct fs_generator* fs_get_generator(const std::string& fs_type);
|
2015-11-27 09:29:37 +00:00
|
|
|
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize,
|
|
|
|
const std::string& initial_dir);
|
2014-03-12 01:28:15 +00:00
|
|
|
|
|
|
|
#endif
|