view mcabber/src/commands.h @ 201:78c645333fb7

[/trunk] Changeset 213 by mikael * Add a css stylesheet for the HTML version of the manpage
author mikael
date Sat, 07 May 2005 14:00:13 +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__ */