Fix macro redefinition

This commit is contained in:
olszomal 2022-11-29 12:47:20 +01:00 committed by Michał Trojnara
parent 3109bdf0ab
commit c718882ffb

6
msi.h
View File

@ -122,8 +122,12 @@
#error "Cannot determine the endian-ness of this platform" #error "Cannot determine the endian-ness of this platform"
#endif #endif
#ifndef LOWORD
#define LOWORD(x) (x & 0xFFFF) #define LOWORD(x) (x & 0xFFFF)
#define HIWORD(x) (x >> 16) #endif /* LOWORD */
#ifndef HIWORD
#define HIWORD(x) ((x >> 16) & 0xFFFF)
#endif /* HIWORD */
#if BYTE_ORDER == BIG_ENDIAN #if BYTE_ORDER == BIG_ENDIAN
#define LE_UINT16(x) ((((x) >> 8) & 0x00FF) | \ #define LE_UINT16(x) ((((x) >> 8) & 0x00FF) | \