- 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:
parent
2b0e9650bb
commit
fec958cc0a
54 changed files with 66 additions and 120 deletions
|
|
@ -255,6 +255,8 @@ typedef int16_t SHORT;
|
|||
typedef uint16_t USHORT;
|
||||
typedef int32_t LONG;
|
||||
typedef uint32_t ULONG;
|
||||
typedef uint32_t DWORD;
|
||||
|
||||
#define mmioFOURCC MAKE_ID
|
||||
#define DEFINE_GUID(A, B, C, E, F, G, H, I, J, K, L, M)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue