view src/protocols/zephyr/error_table.h @ 5937:3034a6ea2d89

[gaim-migrate @ 6377] New buddy pounces was crashing gaim. I decided to take this out of the feature list. There was heavy debate, and I thought having it crash was a good idea for 0.65. You know, kind of a "Surprise!!" I was eventually overruled by common sense, but I promise you, proud users of gaim, I only have so much common sense left, and soon it will no longer interfere! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 21 Jun 2003 09:11:53 +0000
parents 424a40f12a6c
children fc464a0abccc
line wrap: on
line source

/*
 * Copyright 1988 by the Student Information Processing Board of the
 * Massachusetts Institute of Technology.
 *
 * For copyright info, see mit-sipb-copyright.h.
 */

#ifndef _ET_H
struct error_table {
    char const * const * msgs;
    long base;
    int n_msgs;
};
struct et_list {
    struct et_list *next;
    const struct error_table *table;
};
extern struct et_list * _et_list;

#define	ERRCODE_RANGE	8	/* # of bits to shift table number */
#define	BITS_PER_CHAR	6	/* # bits to shift per character in name */

extern const char *error_table_name();
#define _ET_H
#endif