Files
@ r10925:e45ad06a0739
Branch filter:
Location: cpp/openttd-patchpack/source/src/engine_gui.h - annotation
r10925:e45ad06a0739
616 B
text/x-c
(svn r15261) -Add: added Engine::GetRunningCost() to remove some code duplication. Also stops AIs decrementing vehicle counter of first company
r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9403:e5bffa930a63 r9380:6b24883f64de r9403:e5bffa930a63 r9380:6b24883f64de r9380:6b24883f64de r9403:e5bffa930a63 r9403:e5bffa930a63 r9380:6b24883f64de r9380:6b24883f64de | /* $Id$ */
/** @file engine_gui.h Engine GUI functions, used by build_vehicle_gui and autoreplace_gui */
#ifndef ENGINE_GUI_H
#define ENGINE_GUI_H
#include "sortlist_type.h"
typedef GUIList<EngineID> GUIEngineList;
typedef int CDECL EngList_SortTypeFunction(const void*, const void*); ///< argument type for EngList_Sort()
void EngList_Sort(GUIEngineList *el, EngList_SortTypeFunction compare); ///< qsort of the engine list
void EngList_SortPartial(GUIEngineList *el, EngList_SortTypeFunction compare, uint begin, uint num_items); ///< qsort of specified portion of the engine list
#endif /* ENGINE_GUI_H */
|