Xsession.src: setup proper cpp_* defines for linux
[oweals/cde.git] / cde / programs / dtlogin / sysauth.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: sysauth.h /main/4 1995/10/27 16:16:09 rswiston $ */
24 /*                                                                      *
25  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
26  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
27  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
28  * (c) Copyright 1993, 1994 Novell, Inc.                                *
29  */
30 /************************************<+>*************************************
31  ****************************************************************************
32  **
33  **   File:        sysauth.h
34  **
35  **   Project:     HP Visual User Environment (DT)
36  **
37  **   Description: Header file for system authentication routine
38  **
39  **                Defines, structure definitions, and external declarations
40  **                are specified here.
41  **
42  **
43  **   (c) Copyright 1987, 1988, 1989 by Hewlett-Packard Company
44  **
45  **
46  **
47  ****************************************************************************
48  ************************************<+>*************************************/
49
50 #ifndef _SYSAUTH_H
51 #define _SYSAUTH_H
52
53 /****************************************************************************
54  *
55  *  Defines
56  *
57  ****************************************************************************/
58
59 /*
60  *  Authenticate return codes...
61  */
62
63 #define VF_OK                   1
64 #define VF_INVALID              2
65 #define VF_HOME                 3
66 #define VF_MAX_USERS            4
67 #define VF_PASSWD_AGED          5
68 #define VF_BAD_UID              6
69 #define VF_BAD_GID              7
70 #define VF_BAD_AID              8
71 #define VF_BAD_AFLAG            9
72 #define VF_NO_LOGIN             10
73 #define VF_BAD_HOSTNAME         11
74 #define VF_CHALLENGE            12
75 #define VF_MESSAGE              13
76
77 #ifdef BLS
78 #define VF_BAD_SEN_LEVEL        14
79 #endif
80  
81 /****************************************************************************
82  *
83  *  External procedure declarations
84  *
85  ****************************************************************************/
86
87 extern int  Authenticate(struct display *d, char *name, char *passwd,
88                          char **msg) ;
89
90
91 #endif /* _SYSAUTH_H */