view mcabber/src/commands.h @ 174:6354625e8fb2

[/trunk] Changeset 186 by mikael * Fix a bug in scr_cmdhisto_next() * Backup current line when moving to the command history lines
author mikael
date Thu, 05 May 2005 06:17:41 +0000
parents fe7257d251ac
children 8e30b2bb380e
line wrap: on
line source

#ifndef __COMMANDS_H__
#define __COMMANDS_H__ 1

#include <glib.h>

// Command structure
typedef struct {
  char name[32];
  const char *help;
  guint completion_flags[2];
  void (*func)();
} cmd;

void cmd_init(void);
cmd *cmd_get(char *command);
int  process_line(char *line);

#endif /* __COMMANDS_H__ */