Adding of _t to (u)int types, and WChar to char32_t

See: eaae0bb5e
This commit is contained in:
Jonathan G Rennison
2024-01-07 16:41:53 +00:00
parent 55d78a23be
commit 97e6f3062e
655 changed files with 7555 additions and 7555 deletions

View File

@@ -11,7 +11,7 @@
#define OBJECT_TYPE_H
/** Types of objects. */
typedef uint16 ObjectType;
typedef uint16_t ObjectType;
static const ObjectType OBJECT_TRANSMITTER = 0; ///< The large antenna
static const ObjectType OBJECT_LIGHTHOUSE = 1; ///< The nice lighthouse
@@ -25,7 +25,7 @@ static const ObjectType NUM_OBJECTS_PER_GRF = NUM_OBJECTS; ///< Number of suppor
static const ObjectType INVALID_OBJECT_TYPE = 0xFFFF; ///< An invalid object
/** Unique identifier for an object. */
typedef uint32 ObjectID;
typedef uint32_t ObjectID;
struct Object;
struct ObjectSpec;