From 51a0e82eb29a6dfc79f93479883383fbdbf8bcc2 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Wed, 5 Sep 2012 15:24:24 -0400 Subject: TWRP-ify AOSP code Pull in most TWRP sources Stub out partition management code Make it compile -- probably will not boot Kind of a mess but have to start somewhere --- mtdutils/mtdutils.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'mtdutils/mtdutils.h') diff --git a/mtdutils/mtdutils.h b/mtdutils/mtdutils.h index 2708c4318..c57d45d50 100644 --- a/mtdutils/mtdutils.h +++ b/mtdutils/mtdutils.h @@ -19,10 +19,6 @@ #include // for size_t, etc. -#ifdef __cplusplus -extern "C" { -#endif - typedef struct MtdPartition MtdPartition; int mtd_scan_partitions(void); @@ -57,8 +53,11 @@ off_t mtd_erase_blocks(MtdWriteContext *, int blocks); /* 0 ok, -1 for all */ off_t mtd_find_write_start(MtdWriteContext *ctx, off_t pos); int mtd_write_close(MtdWriteContext *); -#ifdef __cplusplus -} -#endif +struct MtdPartition { + int device_index; + unsigned int size; + unsigned int erase_size; + char *name; +}; #endif // MTDUTILS_H_ -- cgit v1.2.3