xref: /illumos-gate/usr/src/cmd/oamuser/user/userdisp.h (revision 7c478bd9)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
28 /*	  All Rights Reserved  	*/
29 
30 
31 #ifndef	_USERDISP_H
32 #define	_USERDISP_H
33 
34 #pragma ident	"%Z%%M%	%I%	%E% SMI"
35 
36 #ifdef	__cplusplus
37 extern "C" {
38 #endif
39 
40 /* Flag values for dispusrdefs() */
41 #define	D_GROUP		0x0001
42 #define	D_BASEDIR	0x0002
43 #define	D_RID		0x0004
44 #define	D_SKEL		0x0008
45 #define	D_SHELL		0x0010
46 #define	D_INACT		0x0020
47 #define	D_EXPIRE	0x0040
48 #define	D_AUTH		0x0080
49 #define	D_PROF		0x0100
50 #define	D_ROLE		0x0200
51 #define	D_PROJ		0x0400
52 #define	D_LPRIV		0x0800
53 #define	D_DPRIV		0x1000
54 #define	D_LOCK		0x2000
55 
56 #define	D_ALL	(D_GROUP | D_BASEDIR | D_RID | D_SKEL | D_SHELL \
57 	| D_INACT | D_EXPIRE | D_AUTH | D_PROF | D_ROLE | D_PROJ | \
58 	D_LPRIV | D_DPRIV | D_LOCK)
59 
60 #ifdef	__cplusplus
61 }
62 #endif
63 
64 #endif	/* _USERDISP_H */
65