aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/sysinstall.h
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-12-09 06:02:36 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-12-09 06:02:36 +0000
commit325403f9596de195bb802b53936f5700d3e514c1 (patch)
treec397ac2f0ca96773e57d858dac092400ce2f74d9 /usr.sbin/sysinstall/sysinstall.h
parentc2ce3df1da95df019f1b7f136fabce0cb9a485af (diff)
downloadsrc-325403f9596de195bb802b53936f5700d3e514c1.tar.gz
src-325403f9596de195bb802b53936f5700d3e514c1.zip
Add Joerg's user management screen for David Nugent's pw(8) program, something
which will also need to be brought in before this screen will work. Add some commentary about how the slip startup code is bogus. Steal Joerg's loop for more properly closing all files and graft it into the EHS startup. My loop was functional but more bogus.
Notes
Notes: svn path=/head/; revision=20231
Diffstat (limited to 'usr.sbin/sysinstall/sysinstall.h')
-rw-r--r--usr.sbin/sysinstall/sysinstall.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/sysinstall.h b/usr.sbin/sysinstall/sysinstall.h
index b24257736201..ddc81116c41a 100644
--- a/usr.sbin/sysinstall/sysinstall.h
+++ b/usr.sbin/sysinstall/sysinstall.h
@@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
- * $Id: sysinstall.h,v 1.86 1996/11/09 16:47:08 joerg Exp $
+ * $Id: sysinstall.h,v 1.87 1996/11/09 18:12:17 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -342,6 +342,7 @@ extern DMenu MenuXF86SelectPC98Server; /* XFree86 server distribution menu */
extern DMenu MenuXF86SelectFonts; /* XFree86 font selection menu */
extern DMenu MenuDiskDevices; /* Disk devices menu */
extern DMenu MenuHTMLDoc; /* HTML Documentation menu */
+extern DMenu MenuUsermgmt; /* User management menu */
/*** Prototypes ***/
@@ -631,6 +632,10 @@ extern void mediaShutdownUFS(Device *dev);
extern Boolean mediaInitUFS(Device *dev);
extern int mediaGetUFS(Device *dev, char *file, Boolean probe);
+/* user.c */
+extern int userAddGroup(dialogMenuItem *self);
+extern int userAddUser(dialogMenuItem *self);
+
/* variable.c */
extern void variable_set(char *var);
extern void variable_set2(char *name, char *value);