mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
Fix macro redefinition
This commit is contained in:
parent
3109bdf0ab
commit
c718882ffb
6
msi.h
6
msi.h
@ -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) | \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user