diff options
Diffstat (limited to 'minzip')
-rw-r--r-- | minzip/DirUtil.h | 8 | ||||
-rw-r--r-- | minzip/Zip.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/minzip/DirUtil.h b/minzip/DirUtil.h index 1f378b75c..f8be64026 100644 --- a/minzip/DirUtil.h +++ b/minzip/DirUtil.h @@ -20,6 +20,10 @@ #include <stdbool.h> #include <utime.h> +#ifdef __cplusplus +extern "C" { +#endif + #ifdef HAVE_SELINUX #include <selinux/selinux.h> #include <selinux/label.h> @@ -56,4 +60,8 @@ int dirUnlinkHierarchy(const char *path); int dirSetHierarchyPermissions(const char *path, int uid, int gid, int dirMode, int fileMode); +#ifdef __cplusplus +} +#endif + #endif // MINZIP_DIRUTIL_H_ diff --git a/minzip/Zip.h b/minzip/Zip.h index 0b1c9d532..4bb9ef6a4 100644 --- a/minzip/Zip.h +++ b/minzip/Zip.h @@ -14,6 +14,10 @@ #include "Hash.h" #include "SysUtil.h" +#ifdef __cplusplus +extern "C" { +#endif + #ifdef HAVE_SELINUX #include <selinux/selinux.h> #include <selinux/label.h> @@ -218,4 +222,8 @@ bool mzExtractRecursive(const ZipArchive *pArchive, void (*callback)(const char *fn, void*), void *cookie, struct selabel_handle *sehnd); +#ifdef __cplusplus +} +#endif + #endif /*_MINZIP_ZIP*/ |