2014-03-12 02:28:15 +01:00
|
|
|
#ifndef _FS_H_
|
2014-07-08 22:41:42 +02:00
|
|
|
#define _FS_H_
|
2014-03-12 02:28:15 +01:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2015-03-19 06:47:09 +01:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-03-12 02:28:15 +01:00
|
|
|
struct fs_generator;
|
|
|
|
|
2014-05-07 00:14:15 +02:00
|
|
|
const struct fs_generator* fs_get_generator(const char *fs_type);
|
2014-03-12 02:28:15 +01:00
|
|
|
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
|
|
|
|
|
2015-03-19 06:47:09 +01:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-03-12 02:28:15 +01:00
|
|
|
#endif
|
|
|
|
|