callback_table.h
author miham
Tue, 19 Dec 2006 06:14:29 +0000
changeset 5342 006d4639558f
parent 4828 9e32eafd4657
permissions -rw-r--r--
(svn r7509) WebTranslator2 update to 2006-12-19 07:13:46
bulgarian - 5 fixed by kokobongo (5)
catalan - 1 fixed, 4 changed by arnaullv (5)
esperanto - 24 fixed by LaPingvino (24)
estonian - 5 fixed by vermon (5)
french - 1 fixed by glx (1)
portuguese - 1 fixed by izhirahider (1)
russian - 1 fixed by Smoky555 (1)
ukrainian - 16 fixed by znikoz (16)
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
543
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     3
#ifndef CALLBACK_TABLE_H
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     4
#define CALLBACK_TABLE_H
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     5
4828
9e32eafd4657 (svn r6752) -Codechange: Move command functions from messy functions.h into command.h
Darkvater
parents: 2436
diff changeset
     6
#include "command.h"
2163
637ec3c361f5 (svn r2673) Include functions.h directly, not globally via openttd.h
tron
parents: 543
diff changeset
     7
543
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     8
extern CommandCallback *_callback_table[];
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
     9
extern const int _callback_table_count;
e3b43338096b (svn r942) -Merged branch/network back into the trunk
truelight
parents:
diff changeset
    10
2436
177cb6a8339f (svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents: 2186
diff changeset
    11
#endif /* CALLBACK_TABLE_H */