# HG changeset patch # User peter1138 # Date 1174752579 0 # Node ID 8ce1cab720e5be0530bba02159e24c2e142e816c # Parent bcf7979ecc4fb1bdce4055e61ae280562c879c0f (svn r9434) -Fix (r9418): remove typedef from forward declaration to appease MSVC or something diff -r bcf7979ecc4f -r 8ce1cab720e5 src/newgrf_cargo.h --- a/src/newgrf_cargo.h Sat Mar 24 15:13:46 2007 +0000 +++ b/src/newgrf_cargo.h Sat Mar 24 16:09:39 2007 +0000 @@ -21,7 +21,7 @@ static const CargoID CT_PURCHASE = NUM_CARGO + 1; static const CargoID CT_DEFAULT_NA = NUM_CARGO + 2; -typedef struct CargoSpec; +struct CargoSpec; SpriteID GetCustomCargoSprite(const CargoSpec *cs); uint16 GetCargoCallback(uint16 callback, uint32 param1, uint32 param2, const CargoSpec *cs);