xref: /illumos-gate/usr/src/cmd/oamuser/user/userdisp.h (revision 9e678d63)
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  * Copyright 2020 OmniOS Community Edition (OmniOSce) Association.
32  */
33 
34 #ifndef	_USERDISP_H
35 #define	_USERDISP_H
36 
37 #ifdef	__cplusplus
38 extern "C" {
39 #endif
40 
41 /* Flag values for dispusrdefs() */
42 #define	D_GROUP		0x0001
43 #define	D_BASEDIR	0x0002
44 #define	D_RID		0x0004
45 #define	D_SKEL		0x0008
46 #define	D_SHELL		0x0010
47 #define	D_INACT		0x0020
48 #define	D_EXPIRE	0x0040
49 #define	D_AUTH		0x0080
50 #define	D_PROF		0x0100
51 #define	D_ROLE		0x0200
52 #define	D_PROJ		0x0400
53 #define	D_LPRIV		0x0800
54 #define	D_DPRIV		0x1000
55 #define	D_LOCK		0x2000
56 #define	D_ROLEAUTH	0x4000
57 
58 #define	D_ALL	(D_GROUP | D_BASEDIR | D_RID | D_SKEL | D_SHELL \
59 	| D_INACT | D_EXPIRE | D_AUTH | D_PROF | D_ROLE | D_PROJ | \
60 	D_LPRIV | D_DPRIV | D_LOCK | D_ROLEAUTH)
61 
62 #ifdef	__cplusplus
63 }
64 #endif
65 
66 #endif	/* _USERDISP_H */
67