2017-10-05 23:32:57 -07:00
|
|
|
/* mz_os.h -- System functions
|
2018-05-09 19:48:55 -07:00
|
|
|
Version 2.3.1, May 9th, 2018
|
2017-10-05 23:32:57 -07:00
|
|
|
part of the MiniZip project
|
|
|
|
|
2018-01-06 08:49:03 -08:00
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
2017-10-05 23:32:57 -07:00
|
|
|
https://github.com/nmoinvaz/minizip
|
2017-10-23 22:17:03 -07:00
|
|
|
Copyright (C) 1998-2010 Gilles Vollant
|
|
|
|
http://www.winimage.com/zLibDll/minizip.html
|
2017-10-05 23:32:57 -07:00
|
|
|
|
|
|
|
This program is distributed under the terms of the same license as zlib.
|
|
|
|
See the accompanying LICENSE file for the full text of the license.
|
|
|
|
*/
|
|
|
|
|
2018-05-09 09:42:31 -07:00
|
|
|
#ifndef MZ_OS_H
|
|
|
|
#define MZ_OS_H
|
2017-10-05 23:32:57 -07:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-23 18:45:29 -07:00
|
|
|
#if !defined(_WIN32) && !defined(MZ_USE_WIN32_API)
|
2017-10-05 23:32:57 -07:00
|
|
|
#include "mz_os_posix.h"
|
|
|
|
#include "mz_strm_posix.h"
|
|
|
|
#else
|
|
|
|
#include "mz_os_win32.h"
|
|
|
|
#include "mz_strm_win32.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-02-08 13:12:37 -03:00
|
|
|
#ifdef HAVE_LZMA
|
|
|
|
#define MZ_VERSION_MADEBY_ZIP_VERSION (63)
|
|
|
|
#elif HAVE_AES
|
|
|
|
#define MZ_VERSION_MADEBY_ZIP_VERSION (51)
|
|
|
|
#elif HAVE_BZIP2
|
|
|
|
#define MZ_VERSION_MADEBY_ZIP_VERSION (46)
|
|
|
|
#else
|
|
|
|
#define MZ_VERSION_MADEBY_ZIP_VERSION (45)
|
|
|
|
#endif
|
|
|
|
|
2018-02-09 17:33:49 -08:00
|
|
|
#define MZ_VERSION_MADEBY ((MZ_VERSION_MADEBY_HOST_SYSTEM << 8) | \
|
|
|
|
(MZ_VERSION_MADEBY_ZIP_VERSION))
|
2018-02-08 13:12:37 -03:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-23 22:12:07 -07:00
|
|
|
int32_t mz_make_dir(const char *path);
|
2017-10-09 00:40:53 -07:00
|
|
|
// Creates a directory recursively
|
2017-10-20 07:59:39 -07:00
|
|
|
|
2017-10-23 22:12:07 -07:00
|
|
|
int32_t mz_path_combine(char *path, const char *join, int32_t max_path);
|
2017-10-16 14:50:31 -07:00
|
|
|
// Combines two paths
|
2017-10-05 23:32:57 -07:00
|
|
|
|
2018-05-06 16:59:31 -07:00
|
|
|
int32_t mz_path_remove_filename(char *path);
|
|
|
|
// Remove the filename from a path
|
|
|
|
|
2017-10-23 22:12:07 -07:00
|
|
|
int32_t mz_get_file_crc(const char *path, uint32_t *result_crc);
|
|
|
|
// Gets the crc32 hash of a file
|
|
|
|
|
2017-10-05 23:32:57 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|