summaryrefslogtreecommitdiff
path: root/vehicle_gui.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-09-27 18:51:04 +0000
committertron <tron@openttd.org>2005-09-27 18:51:04 +0000
commitff304041700c85e587babffdb99ba1c9ff399fc1 (patch)
treed804f18dd3f887e39dcfe68e8510f4ada9a171f9 /vehicle_gui.h
parent50f1a93664c09bff09c0c5e06d73f515ecf90733 (diff)
downloadopenttd-ff304041700c85e587babffdb99ba1c9ff399fc1.tar.xz
(svn r2992) Use PlayerID, StationID and INVALID_STATION instead of int, int and -1
Diffstat (limited to 'vehicle_gui.h')
-rw-r--r--vehicle_gui.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vehicle_gui.h b/vehicle_gui.h
index 0b93ceafd..f6929fe2f 100644
--- a/vehicle_gui.h
+++ b/vehicle_gui.h
@@ -3,6 +3,7 @@
#ifndef VEHICLE_GUI_H
#define VEHICLE_GUI_H
+#include "station.h"
#include "vehicle.h"
struct vehiclelist_d;
@@ -15,7 +16,7 @@ void InitializeVehiclesGuiList(void);
void RebuildVehicleLists(void);
void ResortVehicleLists(void);
-void BuildVehicleList(struct vehiclelist_d *vl, int type, int owner, int station);
+void BuildVehicleList(struct vehiclelist_d* vl, int type, PlayerID, StationID);
void SortVehicleList(struct vehiclelist_d *vl);
int CDECL GeneralOwnerSorter(const void *a, const void *b);