aboutsummaryrefslogtreecommitdiffstats
path: root/minzip/Zip.h
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2011-10-28 10:33:05 -0700
committerDoug Zongker <dougz@android.com>2011-10-31 10:24:09 -0700
commit28ce47cfa6919518a8c298088bf08b03bb374c0f (patch)
tree0c429bcc8f4a1935f3be97d87ebdc2f4434ee887 /minzip/Zip.h
parentd0181b8fcdac761afec252151a8bfda116916e96 (diff)
downloadbootable_recovery-28ce47cfa6919518a8c298088bf08b03bb374c0f.zip
bootable_recovery-28ce47cfa6919518a8c298088bf08b03bb374c0f.tar.gz
bootable_recovery-28ce47cfa6919518a8c298088bf08b03bb374c0f.tar.bz2
turn recovery into a C++ binary
Change-Id: I423a23581048d451d53eef46e5f5eac485b77555
Diffstat (limited to 'minzip/Zip.h')
-rw-r--r--minzip/Zip.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/minzip/Zip.h b/minzip/Zip.h
index 9f99fba..739dbf5 100644
--- a/minzip/Zip.h
+++ b/minzip/Zip.h
@@ -14,6 +14,10 @@
#include "Hash.h"
#include "SysUtil.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*
* One entry in the Zip archive. Treat this as opaque -- use accessors below.
*
@@ -210,4 +214,8 @@ bool mzExtractRecursive(const ZipArchive *pArchive,
int flags, const struct utimbuf *timestamp,
void (*callback)(const char *fn, void*), void *cookie);
+#ifdef __cplusplus
+}
+#endif
+
#endif /*_MINZIP_ZIP*/