- finally managed to get rid of the DWORD type.

This one was particularly nasty because Windows also defines a DWORD, but in Windows it is an unsigned long, not an unsigned int so changing types caused type conflicts and not all could be removed.
Those referring to the Windows type have to be kept, fortunately they are mostly in the Win32 directory, with a handful of exceptions elsewhere.
This commit is contained in:
Christoph Oelckers 2017-03-10 19:46:22 +01:00
commit fec958cc0a
54 changed files with 66 additions and 120 deletions

View file

@ -31,7 +31,7 @@ struct GF1PatchHeader
uint8_t Channels;
uint16_t WaveForms;
uint16_t MasterVolume;
DWORD DataSize;
uint32_t DataSize;
uint8_t Reserved[PATCH_HEADER_RESERVED_SIZE];
} GCC_PACKED;