2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file callback_table.h Table with all command callbacks. */
|
2007-02-23 11:50:43 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifndef CALLBACK_TABLE_H
|
|
|
|
#define CALLBACK_TABLE_H
|
|
|
|
|
2007-12-21 21:50:46 +00:00
|
|
|
#include "command_type.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
extern CommandCallback *_callback_table[];
|
|
|
|
extern const int _callback_table_count;
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#endif /* CALLBACK_TABLE_H */
|