Merge pull request #2685 from minrk/uint32_t

add missing uint32_t typedef on msvc
This commit is contained in:
Luca Boccassi 2017-08-16 09:41:37 +01:00 committed by GitHub
commit e2df328d17

View File

@ -102,6 +102,9 @@ extern "C" {
# ifndef int32_t
typedef __int32 int32_t;
# endif
# ifndef uint32_t
typedef unsigned __int32 uint32_t;
# endif
# ifndef uint16_t
typedef unsigned __int16 uint16_t;
# endif