Eneboo - Documentación para desarrolladores
|
00001 #ifndef QPLATFORMDEFS_H 00002 #define QPLATFORMDEFS_H 00003 00004 // Get Qt defines/settings 00005 00006 #include "qglobal.h" 00007 00008 // Set any POSIX/XOPEN defines at the top of this file to turn on specific APIs 00009 00010 // This is to have PATH_MAX defined in <limits.h> 00011 #ifndef _IBCS2 00012 # define _IBCS2 00013 #endif 00014 00015 #include <unistd.h> 00016 00017 00018 // We are hot - unistd.h should have turned on the specific APIs we requested 00019 00020 00021 #ifdef QT_THREAD_SUPPORT 00022 #include <pthread.h> 00023 #endif 00024 00025 #include <dirent.h> 00026 #include <fcntl.h> 00027 #include <grp.h> 00028 #include <pwd.h> 00029 #include <signal.h> 00030 #include <dlfcn.h> 00031 00032 #include <sys/types.h> 00033 #include <sys/ioctl.h> 00034 #include <sys/ipc.h> 00035 #include <sys/time.h> 00036 #include <sys/shm.h> 00037 #include <sys/socket.h> 00038 #include <sys/stat.h> 00039 #include <sys/wait.h> 00040 00041 // DNS header files are not fully covered by X/Open specifications. 00042 // In particular nothing is said about res_* :/ 00043 // On Unixware header files <netinet/in.h> and <arpa/nameser.h> are not 00044 // included by <resolv.h>. Note that <arpa/nameser.h> must be included 00045 // before <resolv.h>. 00046 #include <netinet/in.h> 00047 #define class r_class // SCO OpenServer 5.0.6 00048 #include <arpa/nameser.h> 00049 #undef class 00050 #include <resolv.h> 00051 00052 00053 #if !defined(QT_NO_COMPAT) 00054 #define QT_STATBUF struct stat 00055 #define QT_STATBUF4TSTAT struct stat 00056 #define QT_STAT ::stat 00057 #define QT_FSTAT ::fstat 00058 #define QT_STAT_REG S_IFREG 00059 #define QT_STAT_DIR S_IFDIR 00060 #define QT_STAT_MASK S_IFMT 00061 #define QT_STAT_LNK S_IFLNK 00062 #define QT_FILENO fileno 00063 #define QT_OPEN ::open 00064 #define QT_CLOSE ::close 00065 #define QT_LSEEK ::lseek 00066 #define QT_READ ::read 00067 #define QT_WRITE ::write 00068 #define QT_ACCESS ::access 00069 #define QT_GETCWD ::getcwd 00070 #define QT_CHDIR ::chdir 00071 #define QT_MKDIR ::mkdir 00072 #define QT_RMDIR ::rmdir 00073 #define QT_OPEN_RDONLY O_RDONLY 00074 #define QT_OPEN_WRONLY O_WRONLY 00075 #define QT_OPEN_RDWR O_RDWR 00076 #define QT_OPEN_CREAT O_CREAT 00077 #define QT_OPEN_TRUNC O_TRUNC 00078 #define QT_OPEN_APPEND O_APPEND 00079 #endif 00080 00081 #define QT_SIGNAL_RETTYPE void 00082 #define QT_SIGNAL_ARGS int 00083 #define QT_SIGNAL_IGNORE SIG_IGN 00084 00085 #define QT_SOCKLEN_T int 00086 00087 #define QT_SNPRINTF ::snprintf 00088 #define QT_VSNPRINTF ::vsnprintf 00089 00090 // SCO OpenServer redefines raise -> kill 00091 #if defined(raise) 00092 # undef raise 00093 #endif 00094 00095 #endif // QPLATFORMDEFS_H