Files
@ r5312:ffd375effb01
Branch filter:
Location: cpp/openttd-patchpack/source/ship.h - annotation
r5312:ffd375effb01
427 B
text/x-c
(svn r7468) -Codechange: [win32] Add some comments to MB/WIDE_TO_WIDE/MB_[BUFFER] macros and
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
r3962:46fb258f66dd r3962:46fb258f66dd r4666:2a2c50111c72 r4666:2a2c50111c72 r4666:2a2c50111c72 r3962:46fb258f66dd r3962:46fb258f66dd r4638:2cf83a5d0131 r4725:3a289e38fda7 r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r3962:46fb258f66dd r4666:2a2c50111c72 r4666:2a2c50111c72 | /* $Id$ */
#ifndef SHIP_H
#define SHIP_H
#include "vehicle.h"
void CcCloneShip(bool success, TileIndex tile, uint32 p1, uint32 p2);
void RecalcShipStuff(Vehicle *v);
static inline bool IsShipInDepot(const Vehicle* v)
{
assert(v->type == VEH_Ship);
return v->u.ship.state == 0x80;
}
static inline bool IsShipInDepotStopped(const Vehicle* v)
{
return IsShipInDepot(v) && v->vehstatus & VS_STOPPED;
}
#endif /* SHIP_H */
|