1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by the Internet Initiative Japan. The name of the
|
|
|
|
* IIJ may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
1998-05-21 21:49:08 +00:00
|
|
|
* $Id: command.h,v 1.12.2.13 1998/05/01 19:24:18 brian Exp $
|
1995-01-31 06:29:58 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
1997-11-22 03:37:54 +00:00
|
|
|
struct cmdtab;
|
1998-04-07 00:54:26 +00:00
|
|
|
struct bundle;
|
|
|
|
struct datalink;
|
|
|
|
struct prompt;
|
1997-11-22 03:37:54 +00:00
|
|
|
|
|
|
|
struct cmdargs {
|
1998-02-17 19:28:01 +00:00
|
|
|
struct cmdtab const *cmdtab; /* The entire command table */
|
|
|
|
struct cmdtab const *cmd; /* This command entry */
|
1998-04-03 19:26:02 +00:00
|
|
|
int argc; /* Number of arguments (excluding cmd */
|
1998-04-14 23:17:24 +00:00
|
|
|
int argn; /* Argument to start processing from */
|
1998-04-03 19:26:02 +00:00
|
|
|
char const *const *argv; /* Arguments */
|
|
|
|
struct bundle *bundle; /* Our bundle */
|
|
|
|
struct datalink *cx; /* Our context */
|
|
|
|
struct prompt *prompt; /* Who executed us */
|
1997-11-22 03:37:54 +00:00
|
|
|
};
|
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
struct cmdtab {
|
1997-11-22 03:37:54 +00:00
|
|
|
const char *name;
|
|
|
|
const char *alias;
|
|
|
|
int (*func) (struct cmdargs const *);
|
1997-08-25 00:29:32 +00:00
|
|
|
u_char lauth;
|
1997-11-22 03:37:54 +00:00
|
|
|
const char *helpmes;
|
|
|
|
const char *syntax;
|
|
|
|
const void *args;
|
1995-01-31 06:29:58 +00:00
|
|
|
};
|
1997-09-22 00:46:56 +00:00
|
|
|
|
1998-04-16 00:26:21 +00:00
|
|
|
#define NEG_ACCEPTED (1)
|
|
|
|
#define NEG_ENABLED (2)
|
|
|
|
#define IsAccepted(x) ((x) & NEG_ACCEPTED)
|
|
|
|
#define IsEnabled(x) ((x) & NEG_ENABLED)
|
1997-10-26 01:04:02 +00:00
|
|
|
|
1998-04-30 23:53:56 +00:00
|
|
|
extern const char Version[];
|
|
|
|
extern const char VersionDate[];
|
1997-10-26 01:04:02 +00:00
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
extern void command_Interpret(char *, int, int *, char ***);
|
|
|
|
extern void command_Run(struct bundle *, int, char const *const *,
|
|
|
|
struct prompt *, const char *);
|
|
|
|
extern void command_Decode(struct bundle *, char *, int, struct prompt *,
|
|
|
|
const char *);
|
|
|
|
extern struct link *command_ChooseLink(struct cmdargs const *);
|
|
|
|
extern const char *command_ShowNegval(unsigned);
|