view mcabber/src/commands.h @ 185:e8e447a07641

[/trunk] Changeset 197 by mikael * Use a constant to store the prefix (timestamp + in/out string) length * Change timestamp display format (add the month & day)
author mikael
date Thu, 05 May 2005 20:05:39 +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__ */