view mcabber/src/commands.h @ 1229:e9ea1497ac9d

Fix a key binding issue on FreeBSD The problem is that on FreeBSD with wide ncurses support, isprint() returns TRUE for special key codes like Fn, KEY_PPAGE, etc. This (ugly) patch makes possible for these special keys to be bound anyway.
author Mikael Berthe <mikael@lilotux.net>
date Fri, 08 Jun 2007 16:35:02 +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... */