callback_table.h
author tron
Fri, 03 Mar 2006 19:42:09 +0000
changeset 3132 4ecd7f40fc76
parent 2436 7d5df545bd5d
child 4828 4e6f53fa10cb
permissions -rw-r--r--
(svn r3747) Change HASBIT() to return 0/1 instead of 0/value of tested bit, because the name suggests it does the former and current behavior broke in some places in very subtle ways (for example HASBIT(x, 0) != HASBIT(y, 1) doesn't work, returning a bool after HASBIT(x, 9) neither)
/* $Id$ */

#ifndef CALLBACK_TABLE_H
#define CALLBACK_TABLE_H

#include "functions.h"

extern CommandCallback *_callback_table[];
extern const int _callback_table_count;

#endif /* CALLBACK_TABLE_H */