#ifndef __EVIL_H__ #define __EVIL_H__ #ifdef EAPI # undef EAPI #endif /* EAPI */ #ifdef _WIN32 # ifdef EFL_EVIL_BUILD # ifdef DLL_EXPORT # define EAPI __declspec(dllexport) # else # define EAPI # endif /* ! DLL_EXPORT */ # else # define EAPI __declspec(dllimport) # endif /* ! EFL_EVIL_BUILD */ #endif /* _WIN32 */ /** * @mainpage Evil * @image html e_big.png * @author Vincent Torri * @date 2008 * * @section intro_sec Introduction * * The Evil library is an evil library that ports some evil Unix * functions to the Windows (XP or Mobile) platform. The evilness is * so huge that the most of the functions are not POSIX or BSD * compliant. * * These functions are intended to be used in the Enlightenment * Fundations Libraries only and can be compiled only on Windows. * * @section evil_sec Evil API Documentation * * Take a look at the satanic documentation of the @ref Evil. * * Take a look at the demoniac documentation of the @ref Dlfcn. */ /** * @file Evil.h * @brief The file that provides miscellaneous functions ported from Unix. * @defgroup Evil Miscellaneous functions ported from Unix. * * This header provides miscallenaous functions that exist on Unix * but not on Windows platform. They try to follow the conformance of * the Unix versions. */ #ifdef __cplusplus extern "C" { #endif #define WIN32_LEAN_AND_MEAN #include #undef WIN32_LEAN_AND_MEAN #include #include #include #include #include #include #include #include #ifdef PATH_MAX # undef PATH_MAX #endif /* PATH_MAX */ #define PATH_MAX MAX_PATH #ifdef _MSC_VER # include # define F_OK 0 /* Check for file existence */ # define X_OK 1 /* MS access() doesn't check for execute permission. */ # define W_OK 2 /* Check for write permission */ # define R_OK 4 /* Check for read permission */ typedef int pid_t; typedef unsigned short mode_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; typedef signed int int32_t; typedef __int64 int64_t; typedef unsigned __int64 uint64_t; typedef SSIZE_T ssize_t; # define strdup(s) _strdup(s) # define unlink(filename) _unlink(filename) # define fileno(f) _fileno(f) # define fdopen(fd,m) _fdopen((fd),(m)) # define access(p,m) _access((p),(m)) # define hypot(x,y) _hypot((x),(y)) #endif /* _MSC_VER */ #ifdef _WIN32_WCE # ifndef offsetof # define offsetof(type, ident) ((size_t)&(((type*)0)->ident)) # endif #endif typedef unsigned long uid_t; typedef unsigned long gid_t; #include "evil_fcntl.h" #include "evil_langinfo.h" #include "evil_libgen.h" #include "evil_main.h" #include "evil_stdlib.h" #include "evil_stdio.h" #include "evil_string.h" #include "evil_time.h" #include "evil_unistd.h" #include "evil_util.h" #if (defined(_WIN32) && !defined(_UWIN) && !defined(__CYGWIN__)) # if defined(_MSC_VER) || defined(__MINGW32__) # ifdef S_ISDIR # undef S_ISDIR # endif # ifdef S_ISREG # undef S_ISREG # endif # define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR) # define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG) # define S_IRUSR _S_IRUSR # define S_IWUSR _S_IWUSR # define S_IXUSR _S_IXUSR # define S_IRGRP S_IRUSR # define S_IROTH S_IRUSR # define S_IWGRP S_IWUSR # define S_IWOTH S_IWUSR # define S_IXGRP S_IXUSR # define S_IXOTH S_IXUSR # define _S_IRWXU (_S_IREAD | _S_IWRITE | _S_IEXEC) # define _S_IXUSR _S_IEXEC # define _S_IWUSR _S_IWRITE # define _S_IRUSR _S_IREAD # define open(path, flag, ...) _open((path), _O_BINARY | (flag), ##__VA_ARGS__) # define mkdir(p,m) _mkdir(p) /* # define close(fd) _close(fd) # define read(fd,buffer,count) _read((fd),(buffer),(count)) # define write(fd,buffer,count) _write((fd),(buffer),(count)) # define unlink(filename) _unlink((filename)) # define lstat(f,s) _stat((f),(s)) */ # endif #endif #ifdef __cplusplus } #endif #endif /* __EVIL_H__ */