aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/devmenu/devmenu.h
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1995-04-14 18:33:44 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1995-04-14 18:33:44 +0000
commit606eff77a12131f877e872c53def49f8ace17783 (patch)
tree7473f1acb09020602e72500373a783a12c70f36d /usr.bin/devmenu/devmenu.h
parenta702c7b87bb5bfc7fe581c8f84d4bcf99dafa9e6 (diff)
Notes
Diffstat (limited to 'usr.bin/devmenu/devmenu.h')
-rw-r--r--usr.bin/devmenu/devmenu.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/usr.bin/devmenu/devmenu.h b/usr.bin/devmenu/devmenu.h
index f5b14a160b3d..2cf77e31aedf 100644
--- a/usr.bin/devmenu/devmenu.h
+++ b/usr.bin/devmenu/devmenu.h
@@ -26,16 +26,13 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: devmenu.h,v 1.1 1995/04/13 21:11:00 wollman Exp $
*/
/* NB: must include sys/devconf.h before this file */
-/* Args are: title, help file, device name list */
-extern const char *devmenu_netif(const char *, const char *, char **);
-
-/* Args are: title, help file, class mask, name list */
-extern const char *devmenu(const char *, const char *, enum dc_class, char **);
+/* Args are: title, help file, device name list, states */
+extern const char *devmenu_netif(const char *, const char *, char **, int);
extern char *devmenu_toname(const struct devconf *);
@@ -48,7 +45,8 @@ extern struct devconf **devmenu_alldevs(void);
/* Frees the array allocated above */
extern void devmenu_freedevs(struct devconf ***);
-/* Args are: title, help file, name list, prompt, no-devices message, class */
+/* Args are: title, help file, name list, prompt, no-devices, class, states */
extern const char *devmenu_common(const char *, const char *, char **,
- const char *, const char *, enum dc_class);
+ const char *, const char *, enum dc_class,
+ int);