(svn r6145) -Codechange: added OrderID to indicate Order indexes out of the pool

This commit is contained in:
truelight
2006-08-26 17:16:51 +00:00
parent b17d389667
commit 43f53ca4fd
3 changed files with 4 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ typedef struct Order {
struct Order *next; ///< Pointer to next order. If NULL, end of list
uint16 index; ///< Index of the order, is not saved or anything, just for reference
OrderID index; ///< Index of the order, is not saved or anything, just for reference
} Order;
#define MAX_BACKUP_ORDER_COUNT 40
@@ -103,7 +103,7 @@ extern MemoryPool _order_pool;
/**
* Get the pointer to the order with index 'index'
*/
static inline Order *GetOrder(uint index)
static inline Order *GetOrder(OrderID index)
{
return (Order*)GetItemFromPool(&_order_pool, index);
}