mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-19 16:35:20 +01:00
Qt/QML edition
This commit is contained in:
commit
d7b361ba44
2168 changed files with 721948 additions and 0 deletions
1
dependencies/libarchive-3.4.2/contrib/android/include/Bcrypt.h
vendored
Normal file
1
dependencies/libarchive-3.4.2/contrib/android/include/Bcrypt.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
#include <bcrypt.h>
|
1
dependencies/libarchive-3.4.2/contrib/android/include/Windows.h
vendored
Normal file
1
dependencies/libarchive-3.4.2/contrib/android/include/Windows.h
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
#include <windows.h>
|
47
dependencies/libarchive-3.4.2/contrib/android/include/android_lf.h
vendored
Normal file
47
dependencies/libarchive-3.4.2/contrib/android/include/android_lf.h
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
/*
|
||||
* Macros for file64 functions
|
||||
*
|
||||
* Android does not support the macro _FILE_OFFSET_BITS=64
|
||||
* As of android-21 it does however support many file64 functions
|
||||
*/
|
||||
|
||||
#ifndef ARCHIVE_ANDROID_LF_H_INCLUDED
|
||||
#define ARCHIVE_ANDROID_LF_H_INCLUDED
|
||||
|
||||
#if __ANDROID_API__ > 20
|
||||
|
||||
#include <dirent.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/statvfs.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/vfs.h>
|
||||
|
||||
//dirent.h
|
||||
#define readdir_r readdir64_r
|
||||
#define readdir readdir64
|
||||
#define dirent dirent64
|
||||
//fcntl.h
|
||||
#define openat openat64
|
||||
#define open open64
|
||||
#define mkstemp mkstemp64
|
||||
//unistd.h
|
||||
#define lseek lseek64
|
||||
#define ftruncate ftruncate64
|
||||
//sys/stat.h
|
||||
#define fstatat fstatat64
|
||||
#define fstat fstat64
|
||||
#define lstat lstat64
|
||||
#define stat stat64
|
||||
//sys/statvfs.h
|
||||
#define fstatvfs fstatvfs64
|
||||
#define statvfs statvfs64
|
||||
//sys/types.h
|
||||
#define off_t off64_t
|
||||
//sys/vfs.h
|
||||
#define fstatfs fstatfs64
|
||||
#define statfs statfs64
|
||||
#endif
|
||||
|
||||
#endif /* ARCHIVE_ANDROID_LF_H_INCLUDED */
|
Loading…
Add table
Add a link
Reference in a new issue