view mcabber/src/commands.h @ 614:d3020b2c4da2

Show empty resources We used to replace empty resources with "default" but this wasn't a good idea, IMO.
author Mikael Berthe <mikael@lilotux.net>
date Fri, 16 Dec 2005 00:40:49 +0100
parents fed6d1e4d7a9
children e6d42f239541
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);
int  process_command(char *line);
char *expandalias(char *line);

extern void mcabber_connect(void);

#endif /* __COMMANDS_H__ */

/* vim: set expandtab cindent cinoptions=>2\:2(0:  For Vim users... */