summaryrefslogtreecommitdiffstats
path: root/mtdutils
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2016-08-31 20:42:11 +0200
committerEthan Yonker <dees_troy@teamw.in>2016-08-31 20:42:13 +0200
commitb8e985c6a29dff748a44ffc9a142c8244ae18099 (patch)
tree65d8042da094e840dd8f44b6959c3b0fc7b1b934 /mtdutils
parenttwrp: Use the correct lib name (diff)
downloadandroid_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar
android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.gz
android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.bz2
android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.lz
android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.xz
android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.zst
android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.zip
Diffstat (limited to 'mtdutils')
-rw-r--r--mtdutils/mounts.h8
-rw-r--r--mtdutils/mtdutils.h8
2 files changed, 16 insertions, 0 deletions
diff --git a/mtdutils/mounts.h b/mtdutils/mounts.h
index 30b2927c2..d721355b8 100644
--- a/mtdutils/mounts.h
+++ b/mtdutils/mounts.h
@@ -17,6 +17,10 @@
#ifndef MTDUTILS_MOUNTS_H_
#define MTDUTILS_MOUNTS_H_
+#ifdef __cplusplus
+extern "C" {
+#endif
+
typedef struct MountedVolume MountedVolume;
int scan_mounted_volumes(void);
@@ -30,4 +34,8 @@ int unmount_mounted_volume(const MountedVolume *volume);
int remount_read_only(const MountedVolume* volume);
+#ifdef __cplusplus
+}
+#endif
+
#endif // MTDUTILS_MOUNTS_H_
diff --git a/mtdutils/mtdutils.h b/mtdutils/mtdutils.h
index 6cbf37eec..235cbe7ce 100644
--- a/mtdutils/mtdutils.h
+++ b/mtdutils/mtdutils.h
@@ -19,6 +19,10 @@
#include <sys/types.h> // for size_t, etc.
+#ifdef __cplusplus
+extern "C" {
+#endif
+
typedef struct MtdPartition MtdPartition;
int mtd_scan_partitions(void);
@@ -58,4 +62,8 @@ struct MtdPartition {
char *name;
};
+#ifdef __cplusplus
+}
+#endif
+
#endif // MTDUTILS_H_