(svn r9391) -Documentation : correct Doxygen of comments and @file inclusion. Time for P and Q files

This commit is contained in:
belugas
2007-03-21 17:42:43 +00:00
parent 4d86aa2479
commit e9295b82ff
7 changed files with 282 additions and 270 deletions

View File

@@ -1,5 +1,7 @@
/* $Id$ */
/** @file pathfind.h */
#ifndef PATHFIND_H
#define PATHFIND_H
@@ -60,9 +62,9 @@ struct TrackPathFinder {
bool hasbit_13;
uint16 hash_head[0x400];
TileIndex hash_tile[0x400]; /* stores the link index when multi link. */
TileIndex hash_tile[0x400]; ///< stores the link index when multi link.
TrackPathFinderLink links[0x400]; /* hopefully, this is enough. */
TrackPathFinderLink links[0x400]; ///< hopefully, this is enough.
};
void FollowTrack(TileIndex tile, uint16 flags, DiagDirection direction, TPFEnumProc* enum_proc, TPFAfterProc* after_proc, void* data);