view mcabber/src/commands.h @ 249:c3e6e78d1ab4

[/trunk] Changeset 262 by mikael * Fix reading almost-but-not-too-large messages * Add a warning when old-style history log file is read
author mikael
date Sat, 25 Jun 2005 08:34:14 +0000
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__ */