summaryrefslogtreecommitdiff
path: root/order.h
diff options
context:
space:
mode:
Diffstat (limited to 'order.h')
-rw-r--r--order.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/order.h b/order.h
index ea210063c..bf96e92ee 100644
--- a/order.h
+++ b/order.h
@@ -117,6 +117,16 @@ static inline uint16 GetOrderPoolSize(void)
return _order_pool.total_items;
}
+static inline OrderID GetOrderArraySize(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 GetOrderPoolSize();
+}
+
/**
* Check if a Order really exists.
*/