view mcabber/src/commands.h @ 1338:43eb4833db0c

Post-0.9.4 changes
author Mikael Berthe <mikael@lilotux.net>
date Sat, 27 Oct 2007 16:31:12 +0200
parents 16abe7ec3056
children 61a54e172010
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)(char *);
} cmd;

void cmd_init(void);
cmd *cmd_get(const char *command);
int  process_line(char *line);
int  process_command(char *line, guint iscmd);
char *expandalias(char *line);

extern char *mcabber_version(void);
extern void mcabber_connect(void);

void room_whois(gpointer bud, char *nick_locale, guint interactive);
void room_leave(gpointer bud, char *arg);
void setstatus(const char *recipient, const char *arg);

#endif /* __COMMANDS_H__ */

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