6ebec932d6
Also switch all remaining headers over to #pragma once, and actually use FB_COMMAND_SZ. Bug: http://b/77340848 Test: ran tests Change-Id: I27107d054c206e66c39208099e36a55df604e08f
10 lines
341 B
C++
10 lines
341 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#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, const char* fileName, long long partSize,
|
|
const std::string& initial_dir, unsigned eraseBlkSize = 0, unsigned logicalBlkSize = 0);
|