зеркало из https://github.com/mozilla/gecko-dev.git
Bug 241262 – npapi's [u]int32 isn't guaranteed to always be 32 bits. r+sr=jst
This commit is contained in:
Родитель
d86ae4c7a6
Коммит
8b9d3981c8
|
@ -181,7 +181,7 @@ typedef unsigned short uint16;
|
|||
#endif
|
||||
|
||||
#ifndef _UINT32
|
||||
# if defined(__alpha) || defined(__amd64__) || defined(__x86_64__)
|
||||
# if defined(__alpha) || defined(__amd64__) || defined(__x86_64__) || defined(__LP64__)
|
||||
typedef unsigned int uint32;
|
||||
# else /* __alpha */
|
||||
typedef unsigned long uint32;
|
||||
|
@ -197,7 +197,7 @@ typedef short int16;
|
|||
#endif
|
||||
|
||||
#ifndef _INT32
|
||||
# if defined(__alpha) || defined(__amd64__) || defined(__x86_64__)
|
||||
# if defined(__alpha) || defined(__amd64__) || defined(__x86_64__) || defined(__LP64__)
|
||||
typedef int int32;
|
||||
# else /* __alpha */
|
||||
typedef long int32;
|
||||
|
|
Загрузка…
Ссылка в новой задаче