X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommand.h;h=43478ef4cacf2d1af06fbe3fc36052ef2ae5e046;hb=a1c8f6fe2935432af4dbe30aef2434c6ad437a56;hp=423a8a30195a9e0802a10f1cf2cc8d4bc6cc648a;hpb=74a57f26f1458b28a0fddbb9f46004ac8f4d9c30;p=pspp diff --git a/src/command.h b/src/command.h index 423a8a3019..43478ef4ca 100644 --- a/src/command.h +++ b/src/command.h @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !command_h #define command_h 1 @@ -37,12 +37,16 @@ enum CMD_SUCCESS, /* Command successfully parsed and executed. */ CMD_PART_SUCCESS_MAYBE, /* Command may have been partially executed. */ CMD_PART_SUCCESS, /* Command fully executed up to error. */ - CMD_TRAILING_GARBAGE, /* Command followed by garbage. */ + CMD_TRAILING_GARBAGE /* Command followed by garbage. */ }; extern int pgm_state; extern const char *cur_proc; + +char * pspp_completion_function (const char *text, int state); + + int cmd_parse (void); /* Prototype all the command functions. */ @@ -50,10 +54,13 @@ int cmd_parse (void); int FUNC (void); #define SPCCMD(NAME, T1, T2, T3, T4, FUNC) \ int FUNC (void); -#define UNIMPL(NAME, T1, T2, T3, T4) +#define DBGCMD(NAME, T1, T2, T3, T4, FUNC) \ + int FUNC (void); +#define UNIMPL(NAME, T1, T2, T3, T4, DESC) #include "command.def" #undef DEFCMD #undef SPCCMD #undef UNIMPL +#undef DBGCMD #endif /* !command_h */