view mcabber/src/commands.h @ 259:594e73bc9610

Remove support for old logfile format Remove unnecessary complexity (2 date fomats). Scripts are available in contrib/ to convert the log files...
author mikael@frmp8452
date Fri, 01 Jul 2005 20:25:03 +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__ */