Commit e2df328d authored by Luca Boccassi's avatar Luca Boccassi Committed by GitHub

Merge pull request #2685 from minrk/uint32_t

add missing uint32_t typedef on msvc
parents 4a18f620 e0271087
......@@ -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