add missing uint32_t typedef on msvc

uint32_t is used in the draft APIs
and undefined on MSC 1500
preventing compilation
This commit is contained in:
Min RK 2017-08-16 09:40:20 +02:00
parent 4a18f6204c
commit e0271087f0

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