62 lines
1.8 KiB
C
62 lines
1.8 KiB
C
/* mz_os_posix.h -- System functions for posix
|
|
Version 2.0.0, October 4th, 2017
|
|
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_POSIX_H
|
|
#define _MZ_OS_POSIX_H
|
|
|
|
#include <stdint.h>
|
|
#include <dirent.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/***************************************************************************/
|
|
|
|
#if defined(__APPLE__)
|
|
#define MZ_VERSION_MADEBY (19)
|
|
#elif defined(unix)
|
|
#define MZ_VERSION_MADEBY (3)
|
|
#endif
|
|
|
|
/***************************************************************************/
|
|
|
|
int32_t mz_posix_rand(uint8_t *buf, int32_t size);
|
|
int16_t mz_posix_get_file_date(const char *path, uint32_t *dos_date);
|
|
int16_t mz_posix_set_file_date(const char *path, uint32_t dos_date);
|
|
int16_t mz_posix_change_dir(const char *path);
|
|
int16_t mz_posix_make_dir(const char *path);
|
|
DIR* mz_posix_open_dir(const char *path);
|
|
struct
|
|
dirent* mz_posix_read_dir(DIR *dir);
|
|
int32_t mz_posix_close_dir(DIR *dir);
|
|
int32_t mz_posix_is_dir(const char *path);
|
|
|
|
/***************************************************************************/
|
|
|
|
#define mz_os_rand mz_posix_rand
|
|
#define mz_os_get_file_date mz_posix_get_file_date
|
|
#define mz_os_set_file_date mz_posix_set_file_date
|
|
#define mz_os_change_dir mz_posix_change_dir
|
|
#define mz_os_make_dir mz_posix_make_dir
|
|
#define mz_os_open_dir mz_posix_open_dir
|
|
#define mz_os_read_dir mz_posix_read_dir
|
|
#define mz_os_close_dir mz_posix_close_dir
|
|
#define mz_os_is_dir mz_posix_is_dir
|
|
|
|
/***************************************************************************/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|