(svn r22019) -Codechange: s/functions.h/clear_func.h/

This commit is contained in:
rubidium 2011-02-07 22:38:02 +00:00
parent bc3ce1e53b
commit 0395aab420
11 changed files with 22 additions and 23 deletions

View File

@ -388,6 +388,7 @@
<ClInclude Include="..\src\cargotype.h" />
<ClInclude Include="..\src\cheat_func.h" />
<ClInclude Include="..\src\cheat_type.h" />
<ClInclude Include="..\src\clear_func.h" />
<ClInclude Include="..\src\cmd_helper.h" />
<ClInclude Include="..\src\command_func.h" />
<ClInclude Include="..\src\command_type.h" />
@ -429,7 +430,6 @@
<ClInclude Include="..\src\fileio_type.h" />
<ClInclude Include="..\src\fios.h" />
<ClInclude Include="..\src\fontcache.h" />
<ClInclude Include="..\src\functions.h" />
<ClInclude Include="..\src\gamelog.h" />
<ClInclude Include="..\src\gamelog_internal.h" />
<ClInclude Include="..\src\genworld.h" />

View File

@ -384,6 +384,9 @@
<ClInclude Include="..\src\cheat_type.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\src\clear_func.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\src\cmd_helper.h">
<Filter>Header Files</Filter>
</ClInclude>
@ -507,9 +510,6 @@
<ClInclude Include="..\src\fontcache.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\src\functions.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="..\src\gamelog.h">
<Filter>Header Files</Filter>
</ClInclude>

View File

@ -826,6 +826,10 @@
RelativePath=".\..\src\cheat_type.h"
>
</File>
<File
RelativePath=".\..\src\clear_func.h"
>
</File>
<File
RelativePath=".\..\src\cmd_helper.h"
>
@ -990,10 +994,6 @@
RelativePath=".\..\src\fontcache.h"
>
</File>
<File
RelativePath=".\..\src\functions.h"
>
</File>
<File
RelativePath=".\..\src\gamelog.h"
>

View File

@ -823,6 +823,10 @@
RelativePath=".\..\src\cheat_type.h"
>
</File>
<File
RelativePath=".\..\src\clear_func.h"
>
</File>
<File
RelativePath=".\..\src\cmd_helper.h"
>
@ -987,10 +991,6 @@
RelativePath=".\..\src\fontcache.h"
>
</File>
<File
RelativePath=".\..\src\functions.h"
>
</File>
<File
RelativePath=".\..\src\gamelog.h"
>

View File

@ -121,6 +121,7 @@ cargopacket.h
cargotype.h
cheat_func.h
cheat_type.h
clear_func.h
cmd_helper.h
command_func.h
command_type.h
@ -162,7 +163,6 @@ fileio_func.h
fileio_type.h
fios.h
fontcache.h
functions.h
gamelog.h
gamelog_internal.h
genworld.h

View File

@ -15,7 +15,7 @@
#include "landscape.h"
#include "genworld.h"
#include "landscape_type.h"
#include "functions.h"
#include "clear_func.h"
#include "economy_func.h"
#include "viewport_func.h"
#include "water.h"

View File

@ -7,17 +7,16 @@
* 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/>.
*/
/** @file functions.h Some generic functions that actually shouldn't be here. */
/** @file clear_func.h Functions related to clear (MP_CLEAR) land. */
#ifndef FUNCTIONS_H
#define FUNCTIONS_H
#ifndef CLEAR_FUNC_H
#define CLEAR_FUNC_H
#include "tile_cmd.h"
/* clear_land.cpp */
void DrawHillyLandTile(const TileInfo *ti);
void DrawClearLandTile(const TileInfo *ti, byte set);
void DrawClearLandFence(const TileInfo *ti);
void TileLoopClearHelper(TileIndex tile);
#endif /* FUNCTIONS_H */
#endif /* CLEAR_FUNC_H */

View File

@ -18,7 +18,7 @@
#include "bridge_map.h"
#include "genworld.h"
#include "autoslope.h"
#include "functions.h"
#include "clear_func.h"
#include "water.h"
#include "window_func.h"
#include "company_gui.h"

View File

@ -29,7 +29,7 @@
#include "water.h"
#include "station_gui.h"
#include "strings_func.h"
#include "functions.h"
#include "clear_func.h"
#include "window_func.h"
#include "date_func.h"
#include "vehicle_func.h"

View File

@ -19,7 +19,7 @@
#include "town.h"
#include "genworld.h"
#include "transparency.h"
#include "functions.h"
#include "clear_func.h"
#include "company_func.h"
#include "sound_func.h"
#include "water_map.h"

View File

@ -29,7 +29,7 @@
#include "tunnelbridge_map.h"
#include "strings_func.h"
#include "date_func.h"
#include "functions.h"
#include "clear_func.h"
#include "vehicle_func.h"
#include "sound_func.h"
#include "tunnelbridge.h"