• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  Name                         : qnxtypes.h
3  *  Author                       : Richard Frowijn
4  *  Function                     : standard qnx types
5  *  History                      : 22-03-1998 created
6  *
7  */
8 
9 #ifndef _QNX4TYPES_H
10 #define _QNX4TYPES_H
11 
12 #include <linux/types.h>
13 
14 typedef __le16 qnx4_nxtnt_t;
15 typedef __u8  qnx4_ftype_t;
16 
17 typedef struct {
18 	__le32 xtnt_blk;
19 	__le32 xtnt_size;
20 } qnx4_xtnt_t;
21 
22 typedef __le16 qnx4_mode_t;
23 typedef __le16 qnx4_muid_t;
24 typedef __le16 qnx4_mgid_t;
25 typedef __le32 qnx4_off_t;
26 typedef __le16 qnx4_nlink_t;
27 
28 #endif
29