Changed sdword and slong types to int32_t
This commit is contained in:
parent
b11d880f41
commit
d8a855aa42
@ -137,9 +137,7 @@ typedef uint16_t word;
|
||||
typedef int16_t sshort;
|
||||
typedef uint16_t ushort;
|
||||
|
||||
typedef int32_t sdword;
|
||||
typedef uint32_t dword;
|
||||
typedef int32_t slong;
|
||||
typedef uint32_t ulong;
|
||||
#endif //#ifdef _MSC_VER
|
||||
|
||||
|
@ -68,8 +68,8 @@ typedef struct {
|
||||
word revNumber; // Is now 0x0100
|
||||
word dataType; // See #defines above
|
||||
word headerSize;
|
||||
sdword creationDate;
|
||||
sdword lastModified;
|
||||
int32_t creationDate;
|
||||
int32_t lastModified;
|
||||
word totalRecords;
|
||||
word recordSize;
|
||||
} headerType;
|
||||
@ -223,7 +223,7 @@ typedef struct {
|
||||
typedef struct {
|
||||
char versionMajor;
|
||||
char versionMinor;
|
||||
sdword creationDate;
|
||||
int32_t creationDate;
|
||||
dword key;
|
||||
dword reservedKey;
|
||||
dword relKey1;
|
||||
|
@ -69,8 +69,8 @@ typedef struct {
|
||||
word revNumber; // Is now 0x0100
|
||||
word dataType; // See #defines above
|
||||
word headerSize;
|
||||
sdword creationDate;
|
||||
sdword lastModified;
|
||||
int32_t creationDate;
|
||||
int32_t lastModified;
|
||||
word totalRecords;
|
||||
word recordSize;
|
||||
} headerType;
|
||||
@ -225,7 +225,7 @@ typedef struct {
|
||||
typedef struct {
|
||||
byte versionMajor;
|
||||
byte versionMinor;
|
||||
sdword creationDate;
|
||||
int32_t creationDate;
|
||||
dword key;
|
||||
dword reservedKey;
|
||||
dword relKey1;
|
||||
|
@ -583,7 +583,7 @@ struct _msgarea {
|
||||
word killskip; /* Exempt the first X msgs from this processing 50*/
|
||||
zstr barricade; /* Barricade file 52*/
|
||||
zstr barricademenu; /* Apply barricade priv while using this menu 54*/
|
||||
sdword cbPrior; /* Seek offset from start of this area to get back56*
|
||||
int32_t cbPrior; /* Seek offset from start of this area to get back56*
|
||||
* to prior area. */
|
||||
zstr attachpath; /* Reserved for future use 58*/
|
||||
dword rsvd4; /*60*/
|
||||
|
@ -41,7 +41,6 @@ typedef uint16_t word;
|
||||
typedef int16_t sshort;
|
||||
typedef uint16_t ushort;
|
||||
|
||||
typedef int32_t sdword;
|
||||
typedef uint32_t dword;
|
||||
|
||||
#endif //#ifndef __goldall_h
|
||||
|
@ -81,7 +81,6 @@ typedef uint16_t word;
|
||||
typedef int16_t sshort;
|
||||
typedef uint16_t ushort;
|
||||
|
||||
typedef int32_t sdword;
|
||||
typedef uint32_t dword;
|
||||
|
||||
#endif //#ifndef __goldall_h
|
||||
|
Reference in New Issue
Block a user