Usermode/AxWin3 - Working on a bitmap/framebuffer window type
[tpg/acess2.git] / Usermode / include / sys / types.h
index fe17994..4e38de3 100644 (file)
@@ -3,6 +3,8 @@
 #ifndef _SYS_TYPES_H
 #define _SYS_TYPES_H
 
+#include "../acess/intdefs.h"
+
 typedef struct stat    t_fstat;
 
 #define FD_SETSIZE     128
@@ -43,7 +45,7 @@ struct s_sysFInfo {
        time_t  ctime;
         int    numacls;
        struct s_sysACL acls[];
-};
+} __attribute__((packed));
 typedef struct s_sysFInfo      t_sysFInfo;
 typedef struct s_sysACL        t_sysACL;
 
@@ -52,6 +54,10 @@ extern void  FD_CLR(int fd, fd_set *fdsetp);
 extern void    FD_SET(int fd, fd_set *fdsetp);
 extern int     FD_ISSET(int fd, fd_set *fdsetp);
 
+typedef __uint8_t      u_int8_t;
+typedef __uint16_t     u_int16_t;
+typedef __uint32_t     u_int32_t;
+
 #include "../sys/stat.h"
 
 #endif

UCC git Repository :: git.ucc.asn.au