From 5fd9aeb12b75a3971e86e5b7d1701115f57fbc12 Mon Sep 17 00:00:00 2001 From: truelight Date: Tue, 22 Aug 2006 20:41:26 +0000 Subject: (svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 (or, will do that). It isn't the best name, but we couldn't find any better. This unifies the pool-system even more. --- station.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'station.h') diff --git a/station.h b/station.h index 1a343410d..6d753183d 100644 --- a/station.h +++ b/station.h @@ -161,6 +161,16 @@ static inline uint16 GetStationPoolSize(void) return _station_pool.total_items; } +static inline StationID GetStationArraySize(void) +{ + /* TODO - This isn't the real content of the function, but + * with the new pool-system this will be replaced with one that + * _really_ returns the highest index + 1. Now it just returns + * the next safe value we are sure about everything is below. + */ + return GetStationPoolSize(); +} + /** * Check if a station really exists. */ -- cgit v1.2.3-54-g00ecf