mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-04 22:47:44 -04:00
39 lines
762 B
C
39 lines
762 B
C
#ifndef LIBPICOFE_POSIX_H
|
|
#define LIBPICOFE_POSIX_H
|
|
|
|
/* define POSIX stuff: dirent, scandir, getcwd, mkdir */
|
|
#if defined(__linux__) || defined(__MINGW32__)
|
|
|
|
#include <dirent.h>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
|
|
#ifdef __MINGW32__
|
|
#warning hacks!
|
|
#define mkdir(pathname,mode) mkdir(pathname)
|
|
#define d_type d_ino
|
|
#define DT_REG 0
|
|
#define DT_DIR 0
|
|
#endif
|
|
|
|
#elif defined(__PSP__)
|
|
|
|
#include <dirent.h>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
|
|
/* map PSP names to posix. needs special scandir() function to mask rwx bits */
|
|
#define d_type d_stat.st_attr
|
|
#define DT_LNK FIO_SO_IFLNK
|
|
#define DT_DIR FIO_SO_IFDIR
|
|
#define DT_REG FIO_SO_IFREG
|
|
#define DT_UNKNOWN 0
|
|
|
|
#else
|
|
|
|
#error "must provide posix"
|
|
|
|
#endif
|
|
|
|
#endif // LIBPICOFE_POSIX_H
|