diff options
author | Tao Bao <tbao@google.com> | 2015-07-14 22:26:45 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-07-14 22:26:45 +0200 |
commit | 4824827340cc76927f8b24d000638624b15021ac (patch) | |
tree | 57d13940b2ca1bef9834f236323079dd1fbad7d5 /minzip | |
parent | am 90c75b0b: Change init sequence to support file level encryption (diff) | |
parent | am 0bacbfd0: Merge "recovery: Switch applypatch/ and updater/ to cpp." (diff) | |
download | android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.gz android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.bz2 android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.lz android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.xz android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.zst android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.zip |
Diffstat (limited to 'minzip')
-rw-r--r-- | minzip/Hash.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/minzip/Hash.h b/minzip/Hash.h index 8194537f3..e83eac414 100644 --- a/minzip/Hash.h +++ b/minzip/Hash.h @@ -15,6 +15,10 @@ #include <stdbool.h> #include <assert.h> +#ifdef __cplusplus +extern "C" { +#endif + /* compute the hash of an item with a specific type */ typedef unsigned int (*HashCompute)(const void* item); @@ -183,4 +187,8 @@ typedef unsigned int (*HashCalcFunc)(const void* item); void mzHashTableProbeCount(HashTable* pHashTable, HashCalcFunc calcFunc, HashCompareFunc cmpFunc); +#ifdef __cplusplus +} +#endif + #endif /*_MINZIP_HASH*/ |