android_system_core/fastboot/fs.h
Elliott Hughes 98699eca48 Sync with master fastboot.
This brings us all the fastboot changes, plus a change we need from libbase,
and then reverts part of a libziparchive cleanup and fixes dependencies on
new changes to the build system.

Bug: http://b/25375777
Change-Id: I813464da95dc6c81b0a1dc7145152f89bb2d14cd
2015-11-16 08:53:51 -08:00

11 lines
249 B
C++

#ifndef _FS_H_
#define _FS_H_
#include <stdint.h>
struct fs_generator;
const struct fs_generator* fs_get_generator(const std::string& fs_type);
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
#endif