2017-10-05 23:32:57 -07:00
|
|
|
/* mz_os.h -- System functions
|
2017-10-23 17:35:22 -07:00
|
|
|
Version 2.2.1, October 23rd, 2017
|
2017-10-05 23:32:57 -07:00
|
|
|
part of the MiniZip project
|
|
|
|
|
|
|
|
Copyright (C) 2012-2017 Nathan Moinvaziri
|
|
|
|
https://github.com/nmoinvaz/minizip
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MZ_OS_H
|
|
|
|
#define _MZ_OS_H
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-10-20 07:59:39 -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-16 14:50:31 -07:00
|
|
|
int32_t mz_path_combine(char *path, const char *join, int32_t max_path);
|
|
|
|
// Combines two paths
|
2017-10-05 23:32:57 -07:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|