2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Name : qnxtypes.h
|
|
|
|
* Author : Richard Frowijn
|
|
|
|
* Function : standard qnx types
|
|
|
|
* History : 22-03-1998 created
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _QNX4TYPES_H
|
|
|
|
#define _QNX4TYPES_H
|
|
|
|
|
2009-01-02 00:17:35 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-06-25 04:52:52 +08:00
|
|
|
typedef __le16 qnx4_nxtnt_t;
|
2005-04-17 06:20:36 +08:00
|
|
|
typedef __u8 qnx4_ftype_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2005-06-25 04:52:52 +08:00
|
|
|
__le32 xtnt_blk;
|
|
|
|
__le32 xtnt_size;
|
2005-04-17 06:20:36 +08:00
|
|
|
} qnx4_xtnt_t;
|
|
|
|
|
2005-06-25 04:52:52 +08:00
|
|
|
typedef __le16 qnx4_mode_t;
|
|
|
|
typedef __le16 qnx4_muid_t;
|
|
|
|
typedef __le16 qnx4_mgid_t;
|
|
|
|
typedef __le32 qnx4_off_t;
|
|
|
|
typedef __le16 qnx4_nlink_t;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#endif
|