1#ifndef _NCP_NO
2#define _NCP_NO
3
4/* these define the attribute byte as seen by NCP */
5#define aRONLY			(ntohl(0x01000000))
6#define aHIDDEN			(__constant_ntohl(0x02000000))
7#define aSYSTEM			(__constant_ntohl(0x04000000))
8#define aEXECUTE		(ntohl(0x08000000))
9#define aDIR			(ntohl(0x10000000))
10#define aARCH			(ntohl(0x20000000))
11#define aSHARED			(ntohl(0x80000000))
12#define aDONTSUBALLOCATE	(ntohl(1L<<(11+8)))
13#define aTRANSACTIONAL		(ntohl(1L<<(12+8)))
14#define aPURGE			(ntohl(1L<<(16-8)))
15#define aRENAMEINHIBIT		(ntohl(1L<<(17-8)))
16#define aDELETEINHIBIT		(ntohl(1L<<(18-8)))
17#define aDONTCOMPRESS		(nothl(1L<<(27-24)))
18
19#endif /* _NCP_NO */
20