Commit e0271087 authored by Min RK's avatar Min RK

add missing uint32_t typedef on msvc

uint32_t is used in the draft APIs
and undefined on MSC 1500
preventing compilation
parent 4a18f620
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment