view mcabber/src/commands.h @ 291:319e6c58ccb5

Update ChangeLog
author Mikael Berthe <mikael@lilotux.net>
date Fri, 08 Jul 2005 22:33:37 +0100
parents 1eea0fa0955e
children 35cda94e570d 12f919be3da5
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(const char *command);
int  process_line(char *line);
int  process_command(char *line);
char *expandalias(char *line);

#endif /* __COMMANDS_H__ */