diff options
author | Tao Bao <tbao@google.com> | 2015-07-14 03:00:26 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-07-14 03:00:27 +0200 |
commit | 0bacbfd03c866b9078f86216e6786da91238ac91 (patch) | |
tree | 47a62ed3cf643578280ddb1982599ed8345dd071 /minzip/Hash.h | |
parent | Merge "Revert "Zero blocks before BLKDISCARD"" (diff) | |
parent | recovery: Switch applypatch/ and updater/ to cpp. (diff) | |
download | android_bootable_recovery-0bacbfd03c866b9078f86216e6786da91238ac91.tar android_bootable_recovery-0bacbfd03c866b9078f86216e6786da91238ac91.tar.gz android_bootable_recovery-0bacbfd03c866b9078f86216e6786da91238ac91.tar.bz2 android_bootable_recovery-0bacbfd03c866b9078f86216e6786da91238ac91.tar.lz android_bootable_recovery-0bacbfd03c866b9078f86216e6786da91238ac91.tar.xz android_bootable_recovery-0bacbfd03c866b9078f86216e6786da91238ac91.tar.zst android_bootable_recovery-0bacbfd03c866b9078f86216e6786da91238ac91.zip |
Diffstat (limited to 'minzip/Hash.h')
-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*/ |