You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.3 KiB
69 lines
2.3 KiB
3 years ago
|
/* mz_os_posix.h -- System functions for posix
|
||
|
Version 2.3.3, June 10, 2018
|
||
|
part of the MiniZip project
|
||
|
|
||
|
Copyright (C) 2010-2018 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 <time.h>
|
||
|
#include <dirent.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/***************************************************************************/
|
||
|
|
||
|
#if defined(__APPLE__)
|
||
|
#define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_OSX_DARWIN)
|
||
|
#elif defined(unix)
|
||
|
#define MZ_VERSION_MADEBY_HOST_SYSTEM (MZ_HOST_SYSTEM_UNIX)
|
||
|
#endif
|
||
|
|
||
|
/***************************************************************************/
|
||
|
|
||
|
int32_t mz_posix_rand(uint8_t *buf, int32_t size);
|
||
|
int32_t mz_posix_file_exists(const char *path);
|
||
|
int64_t mz_posix_get_file_size(const char *path);
|
||
|
int32_t mz_posix_get_file_date(const char *path, time_t *modified_date, time_t *accessed_date, time_t *creation_date);
|
||
|
int32_t mz_posix_set_file_date(const char *path, time_t modified_date, time_t accessed_date, time_t creation_date);
|
||
|
int32_t mz_posix_get_file_attribs(const char *path, uint32_t *attributes);
|
||
|
int32_t mz_posix_set_file_attribs(const char *path, uint32_t attributes);
|
||
|
int32_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_file_exists mz_posix_file_exists
|
||
|
#define mz_os_get_file_size mz_posix_get_file_size
|
||
|
#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_get_file_attribs mz_posix_get_file_attribs
|
||
|
#define mz_os_set_file_attribs mz_posix_set_file_attribs
|
||
|
#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
|