view mcabber/src/commands.h @ 262:ab6f83a82811

Do not add /help to command completion, as it isn't implemented yet.
author mikael@frmp8452
date Fri, 01 Jul 2005 23:50:08 +0100
parents 8e30b2bb380e
children edc263a5d350
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);

#endif /* __COMMANDS_H__ */